| Index: third_party/WebKit/Source/bindings/core/v8/serialization/V8ScriptValueSerializerTest.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/serialization/V8ScriptValueSerializerTest.cpp b/third_party/WebKit/Source/bindings/core/v8/serialization/V8ScriptValueSerializerTest.cpp
|
| index 5c16974726b77e2e2ae86978cb1a78d8fd05c77c..9d908e390a67e9c38f0262ef46c53bf19cb32f61 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/serialization/V8ScriptValueSerializerTest.cpp
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/serialization/V8ScriptValueSerializerTest.cpp
|
| @@ -96,8 +96,9 @@ v8::Local<v8::Value> RoundTrip(
|
| }
|
|
|
| v8::Local<v8::Value> Eval(const String& source, V8TestingScope& scope) {
|
| - return scope.GetFrame().Script().ExecuteScriptInMainWorldAndReturnValue(
|
| - source);
|
| + return scope.GetFrame()
|
| + .GetScriptController()
|
| + .ExecuteScriptInMainWorldAndReturnValue(source);
|
| }
|
|
|
| String ToJSON(v8::Local<v8::Object> object, const V8TestingScope& scope) {
|
|
|