| Index: cc/resources/resource_pool.h
|
| diff --git a/cc/resources/resource_pool.h b/cc/resources/resource_pool.h
|
| index e17032b4f81c9b4fafd29740b2ee3ce335e80427..df95846944043762a2b72343f67d5836d33fe3ed 100644
|
| --- a/cc/resources/resource_pool.h
|
| +++ b/cc/resources/resource_pool.h
|
| @@ -5,9 +5,13 @@
|
| #ifndef CC_RESOURCES_RESOURCE_POOL_H_
|
| #define CC_RESOURCES_RESOURCE_POOL_H_
|
|
|
| +#include <stddef.h>
|
| +#include <stdint.h>
|
| +
|
| #include <deque>
|
| #include <map>
|
|
|
| +#include "base/macros.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "base/trace_event/memory_dump_provider.h"
|
| #include "cc/base/cc_export.h"
|
| @@ -37,7 +41,7 @@ class CC_EXPORT ResourcePool : public base::trace_event::MemoryDumpProvider {
|
| ~ResourcePool() override;
|
|
|
| Resource* AcquireResource(const gfx::Size& size, ResourceFormat format);
|
| - Resource* TryAcquireResourceWithContentId(uint64 content_id);
|
| + Resource* TryAcquireResourceWithContentId(uint64_t content_id);
|
| void ReleaseResource(Resource* resource, uint64_t content_id);
|
|
|
| void SetResourceUsageLimits(size_t max_memory_usage_bytes,
|
|
|