Index: chrome/renderer/extensions/app_bindings.cc |
diff --git a/chrome/renderer/extensions/app_bindings.cc b/chrome/renderer/extensions/app_bindings.cc |
index 45d15fe0733e6a2a4c111c0ceb3f1e52e3973179..472d93103b15681209e9c5b4ac59b3226ae65363 100644 |
--- a/chrome/renderer/extensions/app_bindings.cc |
+++ b/chrome/renderer/extensions/app_bindings.cc |
@@ -120,7 +120,7 @@ void AppBindings::GetDetailsForFrame( |
args.GetReturnValue().Set(GetDetailsForFrameImpl(target_frame)); |
} |
-v8::Handle<v8::Value> AppBindings::GetDetailsForFrameImpl( |
+v8::Local<v8::Value> AppBindings::GetDetailsForFrameImpl( |
WebFrame* frame) { |
v8::Isolate* isolate = frame->mainWorldScriptContext()->GetIsolate(); |
if (frame->document().securityOrigin().isUnique()) |
@@ -216,7 +216,7 @@ void AppBindings::OnAppInstallStateResponse( |
v8::Isolate* isolate = context()->isolate(); |
v8::HandleScope handle_scope(isolate); |
v8::Context::Scope context_scope(context()->v8_context()); |
- v8::Handle<v8::Value> argv[] = { |
+ v8::Local<v8::Value> argv[] = { |
v8::String::NewFromUtf8(isolate, state.c_str()), |
v8::Integer::New(isolate, callback_id) |
}; |