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

Unified Diff: third_party/WebKit/Source/core/testing/LayerRectList.cpp

Issue 2617783002: Migrate WTF::Vector::append() to ::push_back() [part 12 of N] (Closed)
Patch Set: rebase 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/testing/LayerRectList.cpp
diff --git a/third_party/WebKit/Source/core/testing/LayerRectList.cpp b/third_party/WebKit/Source/core/testing/LayerRectList.cpp
index f128f529263a85919a690012a71f52eb5f3168b0..1dff91058cbe52816ba6164dbccde250257ba887 100644
--- a/third_party/WebKit/Source/core/testing/LayerRectList.cpp
+++ b/third_party/WebKit/Source/core/testing/LayerRectList.cpp
@@ -54,8 +54,8 @@ void LayerRectList::append(Node* layerRootNode,
int layerOffsetX,
int layerOffsetY,
ClientRect* layerRelativeRect) {
- m_list.append(LayerRect::create(layerRootNode, layerType, layerOffsetX,
- layerOffsetY, layerRelativeRect));
+ m_list.push_back(LayerRect::create(layerRootNode, layerType, layerOffsetX,
+ layerOffsetY, layerRelativeRect));
}
DEFINE_TRACE(LayerRectList) {
« no previous file with comments | « third_party/WebKit/Source/core/testing/Internals.cpp ('k') | third_party/WebKit/Source/core/timing/PerformanceBase.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698