| 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;
|
| }
|
|
|