| Index: third_party/WebKit/Source/core/page/PrintContextTest.cpp
|
| diff --git a/third_party/WebKit/Source/core/page/PrintContextTest.cpp b/third_party/WebKit/Source/core/page/PrintContextTest.cpp
|
| index 9145940fb676cf9ece2e07dfd8d5e8faca5cfc86..562e204e77b60c96b064ccf954f087e3f3f1f9cb 100644
|
| --- a/third_party/WebKit/Source/core/page/PrintContextTest.cpp
|
| +++ b/third_party/WebKit/Source/core/page/PrintContextTest.cpp
|
| @@ -54,11 +54,11 @@ class MockCanvas : public SkCanvas {
|
| SkPoint point = getTotalMatrix().mapXY(rect.x(), rect.y());
|
| Operation operation = {DrawPoint,
|
| SkRect::MakeXYWH(point.x(), point.y(), 0, 0)};
|
| - m_recordedOperations.append(operation);
|
| + m_recordedOperations.push_back(operation);
|
| } else {
|
| Operation operation = {DrawRect, rect};
|
| getTotalMatrix().mapRect(&operation.rect);
|
| - m_recordedOperations.append(operation);
|
| + m_recordedOperations.push_back(operation);
|
| }
|
| }
|
|
|
|
|