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

Unified Diff: third_party/WebKit/Source/modules/presentation/PresentationAvailabilityTest.cpp

Issue 2653203003: Migrate WTF::Vector::append() to ::push_back() [part 17 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/modules/presentation/PresentationAvailabilityTest.cpp
diff --git a/third_party/WebKit/Source/modules/presentation/PresentationAvailabilityTest.cpp b/third_party/WebKit/Source/modules/presentation/PresentationAvailabilityTest.cpp
index 3f273a3d173b9137b31e9e5f92ce1317d9f11e4e..030c24dd9a77536ef33568741df4e3b9be8e89e2 100644
--- a/third_party/WebKit/Source/modules/presentation/PresentationAvailabilityTest.cpp
+++ b/third_party/WebKit/Source/modules/presentation/PresentationAvailabilityTest.cpp
@@ -23,8 +23,8 @@ namespace {
TEST(PresentationAvailabilityTest, NoPageVisibilityChangeAfterDetach) {
V8TestingScope scope;
WTF::Vector<KURL> urls;
- urls.append(URLTestHelpers::toKURL("https://example.com"));
- urls.append(URLTestHelpers::toKURL("https://another.com"));
+ urls.push_back(URLTestHelpers::toKURL("https://example.com"));
+ urls.push_back(URLTestHelpers::toKURL("https://another.com"));
Persistent<PresentationAvailabilityProperty> resolver =
new PresentationAvailabilityProperty(

Powered by Google App Engine
This is Rietveld 408576698