| Index: third_party/WebKit/Source/platform/graphics/paint/DisplayItemListTest.cpp
|
| diff --git a/third_party/WebKit/Source/platform/graphics/paint/DisplayItemListTest.cpp b/third_party/WebKit/Source/platform/graphics/paint/DisplayItemListTest.cpp
|
| index a665238af058995fee5f2c243cba548656d75876..9101c181c49dfca797dfca01b9b9ca059996ddb5 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/paint/DisplayItemListTest.cpp
|
| +++ b/third_party/WebKit/Source/platform/graphics/paint/DisplayItemListTest.cpp
|
| @@ -48,7 +48,7 @@ TEST_F(DisplayItemListTest, AppendVisualRect_Simple) {
|
| IntRect drawing_bounds(5, 6, 7, 8);
|
| list_.AllocateAndConstruct<DrawingDisplayItem>(
|
| client_, DisplayItem::Type::kDocumentBackground,
|
| - CreateRectRecord(drawing_bounds), drawing_bounds, true);
|
| + CreateRectRecord(drawing_bounds), true);
|
| list_.AppendVisualRect(drawing_bounds);
|
|
|
| EXPECT_EQ(static_cast<size_t>(1), list_.size());
|
| @@ -64,7 +64,7 @@ TEST_F(DisplayItemListTest, AppendVisualRect_BlockContainingDrawing) {
|
| IntRect drawing_bounds(5, 6, 1, 1);
|
| list_.AllocateAndConstruct<DrawingDisplayItem>(
|
| client_, DisplayItem::Type::kDocumentBackground,
|
| - CreateRectRecord(drawing_bounds), drawing_bounds, true);
|
| + CreateRectRecord(drawing_bounds), true);
|
| list_.AppendVisualRect(drawing_bounds);
|
|
|
| EXPECT_EQ(static_cast<size_t>(1), list_.size());
|
|
|