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

Unified Diff: cc/resources/tile.cc

Issue 22911037: cc: Add DEFINE_ENUM macro. Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 4 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/resources/tile.h ('k') | cc/resources/tile_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/resources/tile.cc
diff --git a/cc/resources/tile.cc b/cc/resources/tile.cc
index 26e784178a4b5dcdd7a9498c5a6ec1520740bd8e..76127232fdf0cec09291505c53fd99c613d00a8f 100644
--- a/cc/resources/tile.cc
+++ b/cc/resources/tile.cc
@@ -67,7 +67,7 @@ scoped_ptr<base::Value> Tile::AsValue() const {
size_t Tile::GPUMemoryUsageInBytes() const {
size_t total_size = 0;
- for (int mode = 0; mode < NUM_RASTER_MODES; ++mode)
+ for (int mode = 0; mode < RasterMode_ARRAYSIZE; ++mode)
total_size += managed_state_.tile_versions[mode].GPUMemoryUsageInBytes();
return total_size;
}
« no previous file with comments | « cc/resources/tile.h ('k') | cc/resources/tile_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698