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

Unified Diff: third_party/WebKit/Source/platform/graphics/paint/DisplayItemTest.cpp

Issue 2286843002: Rename DisplayItem::Type enum constants to Chromium style. (Closed)
Patch Set: Rebasing... Created 4 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
Index: third_party/WebKit/Source/platform/graphics/paint/DisplayItemTest.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/paint/DisplayItemTest.cpp b/third_party/WebKit/Source/platform/graphics/paint/DisplayItemTest.cpp
index 4e8569725423cba6c6ff99005f29d08f9f4d77c7..a40b7c5349c03611bb0e9d45fe8f61af260e2354 100644
--- a/third_party/WebKit/Source/platform/graphics/paint/DisplayItemTest.cpp
+++ b/third_party/WebKit/Source/platform/graphics/paint/DisplayItemTest.cpp
@@ -12,7 +12,7 @@ namespace {
#ifndef NDEBUG
TEST(DisplayItemTest, DebugStringsExist)
{
- for (int type = 0; type <= DisplayItem::TypeLast; type++) {
+ for (int type = 0; type <= DisplayItem::kTypeLast; type++) {
String debugString = DisplayItem::typeAsDebugString(static_cast<DisplayItem::Type>(type));
EXPECT_FALSE(debugString.isEmpty());
EXPECT_NE("Unknown", debugString);

Powered by Google App Engine
This is Rietveld 408576698