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

Unified Diff: third_party/WebKit/Source/web/tests/DocumentLoadingRenderingTest.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/web/tests/DocumentLoadingRenderingTest.cpp
diff --git a/third_party/WebKit/Source/web/tests/DocumentLoadingRenderingTest.cpp b/third_party/WebKit/Source/web/tests/DocumentLoadingRenderingTest.cpp
index 45d191c6f4cb8c19b42634913b925b4db4301b08..93985d777527a6f5c7da37e7252dbad3e535a4e9 100644
--- a/third_party/WebKit/Source/web/tests/DocumentLoadingRenderingTest.cpp
+++ b/third_party/WebKit/Source/web/tests/DocumentLoadingRenderingTest.cpp
@@ -277,8 +277,8 @@ TEST_F(DocumentLoadingRenderingTest, ShouldNotPaintIframeContentWithPendingSheet
// Check that the DisplayItemList has no subsequene caching markers. These are not allowed in pending-style-sheets mode
// since otherwise caching would be incorrect.
ASSERT_EQ(2u, displayItemList.size());
- EXPECT_EQ(DisplayItem::DocumentBackground, displayItemList[0].getType());
- EXPECT_EQ(DisplayItem::BoxDecorationBackground, displayItemList[1].getType());
+ EXPECT_EQ(DisplayItem::kDocumentBackground, displayItemList[0].getType());
+ EXPECT_EQ(DisplayItem::kBoxDecorationBackground, displayItemList[1].getType());
// 1 for the main frame background (white),
// 1 for the iframe background (pink)
« no previous file with comments | « third_party/WebKit/Source/web/WebViewImpl.cpp ('k') | third_party/WebKit/Source/web/tests/WebPluginContainerTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698