Index: content/shell/renderer/test_runner/text_input_controller.cc |
diff --git a/content/shell/renderer/test_runner/text_input_controller.cc b/content/shell/renderer/test_runner/text_input_controller.cc |
index b2a1e7db7fafb3f125106cb98799948c1448d8be..7eed9a2380becd4ffd9bc066fe02523d03ce1e68 100644 |
--- a/content/shell/renderer/test_runner/text_input_controller.cc |
+++ b/content/shell/renderer/test_runner/text_input_controller.cc |
@@ -60,7 +60,7 @@ void TextInputControllerBindings::Install( |
blink::WebFrame* frame) { |
v8::Isolate* isolate = blink::mainThreadIsolate(); |
v8::HandleScope handle_scope(isolate); |
- v8::Handle<v8::Context> context = frame->mainWorldScriptContext(); |
+ v8::Local<v8::Context> context = frame->mainWorldScriptContext(); |
if (context.IsEmpty()) |
return; |
@@ -70,7 +70,7 @@ void TextInputControllerBindings::Install( |
gin::CreateHandle(isolate, new TextInputControllerBindings(controller)); |
if (bindings.IsEmpty()) |
return; |
- v8::Handle<v8::Object> global = context->Global(); |
+ v8::Local<v8::Object> global = context->Global(); |
global->Set(gin::StringToV8(isolate, "textInputController"), bindings.ToV8()); |
} |