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

Unified Diff: cc/resources/tile_priority.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_priority.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/resources/tile_priority.cc
diff --git a/cc/resources/tile_priority.cc b/cc/resources/tile_priority.cc
index eeb87cdcbbc63d1ae89a74a9538961aac6eb74a1..cfa4733a010b81ac20c107db075a6d52d5b6ee89 100644
--- a/cc/resources/tile_priority.cc
+++ b/cc/resources/tile_priority.cc
@@ -68,11 +68,10 @@ scoped_ptr<base::Value> WhichTreeAsValue(WhichTree tree) {
case PENDING_TREE:
return scoped_ptr<base::Value>(base::Value::CreateStringValue(
"PENDING_TREE"));
- default:
- DCHECK(false) << "Unrecognized WhichTree value " << tree;
- return scoped_ptr<base::Value>(base::Value::CreateStringValue(
- "<unknown WhichTree value>"));
}
+ DCHECK(false) << "Unrecognized WhichTree value " << tree;
+ return scoped_ptr<base::Value>(base::Value::CreateStringValue(
+ "<unknown WhichTree value>"));
}
scoped_ptr<base::Value> TileResolutionAsValue(
@@ -157,11 +156,10 @@ scoped_ptr<base::Value> TileMemoryLimitPolicyAsValue(
case ALLOW_ANYTHING:
return scoped_ptr<base::Value>(base::Value::CreateStringValue(
"ALLOW_ANYTHING"));
- default:
- DCHECK(false) << "Unrecognized policy value";
- return scoped_ptr<base::Value>(base::Value::CreateStringValue(
- "<unknown>"));
}
+ DCHECK(false) << "Unrecognized policy value";
+ return scoped_ptr<base::Value>(base::Value::CreateStringValue(
+ "<unknown>"));
}
scoped_ptr<base::Value> TreePriorityAsValue(TreePriority prio) {
« no previous file with comments | « cc/resources/tile_priority.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698