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

Unified Diff: third_party/WebKit/Source/web/WebLocalFrameImpl.cpp

Issue 2612903007: Migrate WTF::Vector::append() to ::push_back() [part 15 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/web/WebLocalFrameImpl.cpp
diff --git a/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp b/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
index b680b59cb720463c60b251ee7c4439b53e3177f3..c38a128394f61de658de3923c1007a19dbbba3f3 100644
--- a/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
+++ b/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
@@ -417,7 +417,7 @@ class ChromePrintContext : public PrintContext {
for (Frame* currentFrame = frame(); currentFrame;
currentFrame = currentFrame->tree().traverseNext(frame())) {
if (currentFrame->isLocalFrame())
- documents.append(toLocalFrame(currentFrame)->document());
+ documents.push_back(toLocalFrame(currentFrame)->document());
}
for (auto& doc : documents)
« no previous file with comments | « third_party/WebKit/Source/web/WebIDBKey.cpp ('k') | third_party/WebKit/Source/web/WebSearchableFormData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698