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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/Iterable.h

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/Iterable.h
diff --git a/third_party/WebKit/Source/bindings/core/v8/Iterable.h b/third_party/WebKit/Source/bindings/core/v8/Iterable.h
index bf126f6441041a4b5621b5c2b3bc84025ae3f1b7..8b005d55ad6cf61a166e85ff1cef0efb6f181c03 100644
--- a/third_party/WebKit/Source/bindings/core/v8/Iterable.h
+++ b/third_party/WebKit/Source/bindings/core/v8/Iterable.h
@@ -123,9 +123,9 @@ class Iterable {
v8::Isolate* isolate = scriptState->isolate();
Vector<ScriptValue, 2> entry;
- entry.append(
+ entry.push_back(
ScriptValue(scriptState, toV8(key, creationContext, isolate)));
- entry.append(
+ entry.push_back(
ScriptValue(scriptState, toV8(value, creationContext, isolate)));
return entry;
}

Powered by Google App Engine
This is Rietveld 408576698