Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(398)

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorHistory.cpp

Issue 2610383002: Migrate WTF::Vector::append() to ::push_back() [part 8 of N] (Closed)
Patch Set: Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
}
}

Powered by Google App Engine
This is Rietveld 408576698