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)); |
} |