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

Unified Diff: cc/resources/managed_tile_state.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/managed_tile_state.h ('k') | cc/resources/prioritized_tile_set.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/resources/managed_tile_state.cc
diff --git a/cc/resources/managed_tile_state.cc b/cc/resources/managed_tile_state.cc
index cf4a7a7b869520b40757bca3873eb16c2702c75e..89fd59b225f34ea6b21b12b69dd5a4f530eaefc9 100644
--- a/cc/resources/managed_tile_state.cc
+++ b/cc/resources/managed_tile_state.cc
@@ -33,11 +33,10 @@ scoped_ptr<base::Value> ManagedTileBinAsValue(ManagedTileBin bin) {
case NEVER_BIN:
return scoped_ptr<base::Value>(base::Value::CreateStringValue(
"NEVER_BIN"));
- default:
- DCHECK(false) << "Unrecognized ManagedTileBin value " << bin;
- return scoped_ptr<base::Value>(base::Value::CreateStringValue(
- "<unknown ManagedTileBin value>"));
}
+ DCHECK(false) << "Unrecognized ManagedTileBin value " << bin;
+ return scoped_ptr<base::Value>(base::Value::CreateStringValue(
+ "<unknown ManagedTileBin value>"));
}
scoped_ptr<base::Value> ManagedTileBinPriorityAsValue(
@@ -49,11 +48,10 @@ scoped_ptr<base::Value> ManagedTileBinPriorityAsValue(
case LOW_PRIORITY_BIN:
return scoped_ptr<base::Value>(base::Value::CreateStringValue(
"LOW_PRIORITY_BIN"));
- default:
- DCHECK(false) << "Unrecognized ManagedTileBinPriority value";
- return scoped_ptr<base::Value>(base::Value::CreateStringValue(
- "<unknown ManagedTileBinPriority value>"));
}
+ DCHECK(false) << "Unrecognized ManagedTileBinPriority value";
+ return scoped_ptr<base::Value>(base::Value::CreateStringValue(
+ "<unknown ManagedTileBinPriority value>"));
}
ManagedTileState::ManagedTileState()
@@ -65,10 +63,10 @@ ManagedTileState::ManagedTileState()
distance_to_visible_in_pixels(std::numeric_limits<float>::infinity()),
visible_and_ready_to_draw(false),
scheduled_priority(0) {
- for (int i = 0; i < NUM_TREES; ++i) {
- tree_bin[i] = NEVER_BIN;
+ for (int i = 0; i < ManagedTileBinPriority_ARRAYSIZE; ++i)
bin[i] = NEVER_BIN;
- }
+ for (int i = 0; i < WhichTree_ARRAYSIZE; ++i)
+ tree_bin[i] = NEVER_BIN;
}
ManagedTileState::TileVersion::TileVersion()
« no previous file with comments | « cc/resources/managed_tile_state.h ('k') | cc/resources/prioritized_tile_set.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698