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

Unified Diff: third_party/WebKit/Source/modules/quota/StorageQuota.cpp

Issue 2614663008: Migrate WTF::Vector::append() to ::push_back() [part 13 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/quota/StorageQuota.cpp
diff --git a/third_party/WebKit/Source/modules/quota/StorageQuota.cpp b/third_party/WebKit/Source/modules/quota/StorageQuota.cpp
index 1e948b6f57cb2464ac032a8f2e95437ec0b90e9d..f8d6a2e7050d44f6f897c33640054587f70da375 100644
--- a/third_party/WebKit/Source/modules/quota/StorageQuota.cpp
+++ b/third_party/WebKit/Source/modules/quota/StorageQuota.cpp
@@ -73,7 +73,7 @@ StorageQuota::StorageQuota() {}
Vector<String> StorageQuota::supportedTypes() const {
Vector<String> types;
for (size_t i = 0; i < WTF_ARRAY_LENGTH(storageTypeMappings); ++i)
- types.append(storageTypeMappings[i].name);
+ types.push_back(storageTypeMappings[i].name);
return types;
}

Powered by Google App Engine
This is Rietveld 408576698