| Index: third_party/WebKit/Source/bindings/tests/results/core/V8TestDictionary.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/tests/results/core/V8TestDictionary.cpp b/third_party/WebKit/Source/bindings/tests/results/core/V8TestDictionary.cpp
|
| index 660836089f99c4eb733cb6d7aec2dd23f56e9ac6..25285e048b79eba930572820e05c135847e846ca 100644
|
| --- a/third_party/WebKit/Source/bindings/tests/results/core/V8TestDictionary.cpp
|
| +++ b/third_party/WebKit/Source/bindings/tests/results/core/V8TestDictionary.cpp
|
| @@ -545,10 +545,10 @@ void V8TestDictionary::toImpl(v8::Isolate* isolate, v8::Local<v8::Value> v8Value
|
|
|
| }
|
|
|
| -v8::Local<v8::Value> toV8(const TestDictionary& impl, v8::Local<v8::Object> creationContext, v8::Isolate* isolate)
|
| +v8::Local<v8::Value> TestDictionary::toV8Impl(v8::Local<v8::Object> creationContext, v8::Isolate* isolate) const
|
| {
|
| v8::Local<v8::Object> v8Object = v8::Object::New(isolate);
|
| - if (!toV8TestDictionary(impl, v8Object, creationContext, isolate))
|
| + if (!toV8TestDictionary(*this, v8Object, creationContext, isolate))
|
| return v8::Local<v8::Value>();
|
| return v8Object;
|
| }
|
|
|