Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(455)

Side by Side Diff: cc/resources/scoped_ui_resource.h

Issue 2440393002: [tracing] Implement composable memory usage estimators. (Closed)
Patch Set: Rebase Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « base/trace_event/estimate_memory_usage_unittest.cc ('k') | cc/resources/ui_resource_bitmap.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 { return bitmap_.EstimateMemoryUsage(); }
37 return bitmap_.GetAllocatedSizeInBytes();
38 }
39 37
40 protected: 38 protected:
41 ScopedUIResource(UIResourceManager* ui_resource_manager, 39 ScopedUIResource(UIResourceManager* ui_resource_manager,
42 const UIResourceBitmap& bitmap); 40 const UIResourceBitmap& bitmap);
43 41
44 UIResourceBitmap bitmap_; 42 UIResourceBitmap bitmap_;
45 UIResourceManager* ui_resource_manager_; 43 UIResourceManager* ui_resource_manager_;
46 UIResourceId id_; 44 UIResourceId id_;
47 45
48 private: 46 private:
49 DISALLOW_COPY_AND_ASSIGN(ScopedUIResource); 47 DISALLOW_COPY_AND_ASSIGN(ScopedUIResource);
50 }; 48 };
51 49
52 } // namespace cc 50 } // namespace cc
53 51
54 #endif // CC_RESOURCES_SCOPED_UI_RESOURCE_H_ 52 #endif // CC_RESOURCES_SCOPED_UI_RESOURCE_H_
OLDNEW
« no previous file with comments | « base/trace_event/estimate_memory_usage_unittest.cc ('k') | cc/resources/ui_resource_bitmap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698