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

Unified Diff: third_party/WebKit/Source/core/paint/TableCellPainterTest.cpp

Issue 1774943003: blink: Rename platform/ methods to prefix with get when they collide. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: clash-platform: rebase-yayyyyyyyy Created 4 years, 9 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/core/paint/TableCellPainterTest.cpp
diff --git a/third_party/WebKit/Source/core/paint/TableCellPainterTest.cpp b/third_party/WebKit/Source/core/paint/TableCellPainterTest.cpp
index ebf0f76d76995a6747c447b21db7faec0c922070..e02f482d3db4d619521184b55d9d3df40fe89ce9 100644
--- a/third_party/WebKit/Source/core/paint/TableCellPainterTest.cpp
+++ b/third_party/WebKit/Source/core/paint/TableCellPainterTest.cpp
@@ -31,7 +31,7 @@ TEST_F(TableCellPainterTest, TableCellBackgroundInterestRect)
IntRect interestRect(0, 0, 200, 200);
paint(&interestRect);
- EXPECT_DISPLAY_LIST(rootPaintController().displayItemList(), 2,
+ EXPECT_DISPLAY_LIST(rootPaintController().getDisplayItemList(), 2,
TestDisplayItem(layoutView, DisplayItem::DocumentBackground),
TestDisplayItem(cell1, DisplayItem::TableCellBackgroundFromRow));
@@ -39,7 +39,7 @@ TEST_F(TableCellPainterTest, TableCellBackgroundInterestRect)
interestRect = IntRect(0, 300, 200, 1000);
paint(&interestRect);
- EXPECT_DISPLAY_LIST(rootPaintController().displayItemList(), 2,
+ EXPECT_DISPLAY_LIST(rootPaintController().getDisplayItemList(), 2,
TestDisplayItem(layoutView, DisplayItem::DocumentBackground),
TestDisplayItem(cell2, DisplayItem::TableCellBackgroundFromRow));
}
« no previous file with comments | « third_party/WebKit/Source/core/paint/ScrollableAreaPainter.cpp ('k') | third_party/WebKit/Source/core/paint/TextPainter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698