| Index: third_party/WebKit/Source/web/tests/sim/SimCanvas.cpp
|
| diff --git a/third_party/WebKit/Source/web/tests/sim/SimCanvas.cpp b/third_party/WebKit/Source/web/tests/sim/SimCanvas.cpp
|
| index 083a63c216f5271f9a8422f7da3a6896f81fdcf9..9a7957facb48db7701f2ee7354053c44cc5dd410 100644
|
| --- a/third_party/WebKit/Source/web/tests/sim/SimCanvas.cpp
|
| +++ b/third_party/WebKit/Source/web/tests/sim/SimCanvas.cpp
|
| @@ -25,7 +25,7 @@ void SimCanvas::addCommand(CommandType type, RGBA32 color) {
|
| if (s_depth > 1)
|
| return;
|
| Command command = {type, color};
|
| - m_commands.append(command);
|
| + m_commands.push_back(command);
|
| }
|
|
|
| void SimCanvas::onDrawRect(const SkRect& rect, const SkPaint& paint) {
|
|
|