Index: cc/resources/resource_pool.h |
diff --git a/cc/resources/resource_pool.h b/cc/resources/resource_pool.h |
index 21bbb0a70d072432048b2a75c2d925d461f81448..3b928553c4df13d828b75e04fafe8c523203a095 100644 |
--- a/cc/resources/resource_pool.h |
+++ b/cc/resources/resource_pool.h |
@@ -45,6 +45,7 @@ class CC_EXPORT ResourcePool { |
size_t max_resource_count); |
void ReduceResourceUsage(); |
+ void CheckBusyResources(); |
size_t total_memory_usage_bytes() const { |
return memory_usage_bytes_; |
@@ -72,6 +73,7 @@ class CC_EXPORT ResourcePool { |
typedef std::list<Resource*> ResourceList; |
ResourceList unused_resources_; |
+ ResourceList busy_resources_; |
DISALLOW_COPY_AND_ASSIGN(ResourcePool); |
}; |