Index: third_party/WebKit/Source/core/inspector/InspectorHistory.cpp |
diff --git a/third_party/WebKit/Source/core/inspector/InspectorHistory.cpp b/third_party/WebKit/Source/core/inspector/InspectorHistory.cpp |
index da21aa672349f272be5b940bd23a0835862aceb4..614621e5776668e533f4d9bc3e33950c543cc138 100644 |
--- a/third_party/WebKit/Source/core/inspector/InspectorHistory.cpp |
+++ b/third_party/WebKit/Source/core/inspector/InspectorHistory.cpp |
@@ -91,7 +91,7 @@ void InspectorHistory::appendPerformedAction(Action* action) { |
m_history.resize(m_afterLastActionIndex); |
} else { |
m_history.resize(m_afterLastActionIndex); |
- m_history.append(action); |
+ m_history.push_back(action); |
++m_afterLastActionIndex; |
} |
} |