| Index: Source/bindings/core/v8/V8BindingForTesting.cpp
|
| diff --git a/Source/bindings/core/v8/V8BindingForTesting.cpp b/Source/bindings/core/v8/V8BindingForTesting.cpp
|
| index 716fd0a6f608ea386ae69619937ba311f62f3d2b..4f6ae867b13a3cf5ad0fb3b0b853639c56f7a552 100644
|
| --- a/Source/bindings/core/v8/V8BindingForTesting.cpp
|
| +++ b/Source/bindings/core/v8/V8BindingForTesting.cpp
|
| @@ -9,7 +9,7 @@
|
|
|
| namespace blink {
|
|
|
| -PassRefPtr<ScriptStateForTesting> ScriptStateForTesting::create(v8::Handle<v8::Context> context, PassRefPtr<DOMWrapperWorld> world)
|
| +PassRefPtr<ScriptStateForTesting> ScriptStateForTesting::create(v8::Local<v8::Context> context, PassRefPtr<DOMWrapperWorld> world)
|
| {
|
| RefPtr<ScriptStateForTesting> scriptState = adoptRef(new ScriptStateForTesting(context, world));
|
| // This ref() is for keeping this ScriptState alive as long as the v8::Context is alive.
|
| @@ -18,7 +18,7 @@ PassRefPtr<ScriptStateForTesting> ScriptStateForTesting::create(v8::Handle<v8::C
|
| return scriptState;
|
| }
|
|
|
| -ScriptStateForTesting::ScriptStateForTesting(v8::Handle<v8::Context> context, PassRefPtr<DOMWrapperWorld> world)
|
| +ScriptStateForTesting::ScriptStateForTesting(v8::Local<v8::Context> context, PassRefPtr<DOMWrapperWorld> world)
|
| : ScriptState(context, world)
|
| {
|
| }
|
|
|