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

Unified Diff: cc/resources/prioritized_tile_set.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/prioritized_tile_set.h ('k') | cc/resources/raster_mode.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/resources/prioritized_tile_set.cc
diff --git a/cc/resources/prioritized_tile_set.cc b/cc/resources/prioritized_tile_set.cc
index d1cc5b7f80c5aed7a365fbe842b51d3c43283a11..c59e53e38e37ffa7676237665aa191c0721a787c 100644
--- a/cc/resources/prioritized_tile_set.cc
+++ b/cc/resources/prioritized_tile_set.cc
@@ -51,7 +51,7 @@ typedef std::vector<Tile*> TileVector;
void SortBinTiles(ManagedTileBin bin, TileVector* tiles) {
switch (bin) {
case NOW_AND_READY_TO_DRAW_BIN:
- break;
+ return;
case NOW_BIN:
case SOON_BIN:
case EVENTUALLY_AND_ACTIVE_BIN:
@@ -59,16 +59,15 @@ void SortBinTiles(ManagedTileBin bin, TileVector* tiles) {
case NEVER_AND_ACTIVE_BIN:
case NEVER_BIN:
std::sort(tiles->begin(), tiles->end(), BinComparator());
- break;
- default:
- NOTREACHED();
+ return;
}
+ NOTREACHED();
}
} // namespace
PrioritizedTileSet::PrioritizedTileSet() {
- for (int bin = 0; bin < NUM_BINS; ++bin)
+ for (int bin = 0; bin < ManagedTileBin_ARRAYSIZE; ++bin)
bin_sorted_[bin] = true;
}
@@ -80,7 +79,7 @@ void PrioritizedTileSet::InsertTile(Tile* tile, ManagedTileBin bin) {
}
void PrioritizedTileSet::Clear() {
- for (int bin = 0; bin < NUM_BINS; ++bin) {
+ for (int bin = 0; bin < ManagedTileBin_ARRAYSIZE; ++bin) {
tiles_[bin].clear();
bin_sorted_[bin] = true;
}
« no previous file with comments | « cc/resources/prioritized_tile_set.h ('k') | cc/resources/raster_mode.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698