chromium/cc/resources/memory_history.h

// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CC_RESOURCES_MEMORY_HISTORY_H_
#define CC_RESOURCES_MEMORY_HISTORY_H_

#include <stddef.h>
#include <stdint.h>

#include <memory>

#include "base/containers/ring_buffer.h"

namespace cc {

// Maintains a history of memory for each frame.
class MemoryHistory {};

}  // namespace cc

#endif  // CC_RESOURCES_MEMORY_HISTORY_H_