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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/WindowProxy.cpp

Issue 2554693003: Migrate WTF::Vector::append() to ::push_back() [part 1 of N] (Closed)
Patch Set: rebase Created 4 years 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/bindings/core/v8/WindowProxy.cpp
diff --git a/third_party/WebKit/Source/bindings/core/v8/WindowProxy.cpp b/third_party/WebKit/Source/bindings/core/v8/WindowProxy.cpp
index 598b9c5c29e5d92788e6210fa0c98cb8cebcaeca..2f0c0994b9eff6f78f7d17fcad3703ccf71d43d1 100644
--- a/third_party/WebKit/Source/bindings/core/v8/WindowProxy.cpp
+++ b/third_party/WebKit/Source/bindings/core/v8/WindowProxy.cpp
@@ -331,7 +331,7 @@ void WindowProxy::createContext() {
extension->name(), extensionGroup, worldId))
continue;
- extensionNames.append(extension->name());
+ extensionNames.push_back(extension->name());
}
}
v8::ExtensionConfiguration extensionConfiguration(extensionNames.size(),

Powered by Google App Engine
This is Rietveld 408576698