OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CC_RESOURCES_SCOPED_UI_RESOURCE_H_ | 5 #ifndef CC_RESOURCES_SCOPED_UI_RESOURCE_H_ |
6 #define CC_RESOURCES_SCOPED_UI_RESOURCE_H_ | 6 #define CC_RESOURCES_SCOPED_UI_RESOURCE_H_ |
7 | 7 |
8 #include "base/macros.h" | 8 #include "base/macros.h" |
9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
10 #include "cc/base/cc_export.h" | 10 #include "cc/base/cc_export.h" |
(...skipping 15 matching lines...) Expand all Loading... |
26 static std::unique_ptr<ScopedUIResource> Create( | 26 static std::unique_ptr<ScopedUIResource> Create( |
27 UIResourceManager* ui_resource_manager, | 27 UIResourceManager* ui_resource_manager, |
28 const UIResourceBitmap& bitmap); | 28 const UIResourceBitmap& bitmap); |
29 ~ScopedUIResource() override; | 29 ~ScopedUIResource() override; |
30 | 30 |
31 // UIResourceClient implementation. | 31 // UIResourceClient implementation. |
32 UIResourceBitmap GetBitmap(UIResourceId uid, bool resource_lost) override; | 32 UIResourceBitmap GetBitmap(UIResourceId uid, bool resource_lost) override; |
33 UIResourceId id() { return id_; } | 33 UIResourceId id() { return id_; } |
34 | 34 |
35 // Returns the memory usage of the bitmap. | 35 // Returns the memory usage of the bitmap. |
36 size_t GetAllocatedSizeInBytes() const { | 36 size_t EstimateMemoryUsage() const { |
37 return bitmap_.GetAllocatedSizeInBytes(); | 37 return bitmap_.EstimateMemoryUsage(); |
38 } | 38 } |
39 | 39 |
40 protected: | 40 protected: |
41 ScopedUIResource(UIResourceManager* ui_resource_manager, | 41 ScopedUIResource(UIResourceManager* ui_resource_manager, |
42 const UIResourceBitmap& bitmap); | 42 const UIResourceBitmap& bitmap); |
43 | 43 |
44 UIResourceBitmap bitmap_; | 44 UIResourceBitmap bitmap_; |
45 UIResourceManager* ui_resource_manager_; | 45 UIResourceManager* ui_resource_manager_; |
46 UIResourceId id_; | 46 UIResourceId id_; |
47 | 47 |
48 private: | 48 private: |
49 DISALLOW_COPY_AND_ASSIGN(ScopedUIResource); | 49 DISALLOW_COPY_AND_ASSIGN(ScopedUIResource); |
50 }; | 50 }; |
51 | 51 |
52 } // namespace cc | 52 } // namespace cc |
53 | 53 |
54 #endif // CC_RESOURCES_SCOPED_UI_RESOURCE_H_ | 54 #endif // CC_RESOURCES_SCOPED_UI_RESOURCE_H_ |
OLD | NEW |