Index: chrome/renderer/extensions/webstore_bindings.cc |
diff --git a/chrome/renderer/extensions/webstore_bindings.cc b/chrome/renderer/extensions/webstore_bindings.cc |
index 97e80759e93c685c3273e6476d374363191bec0e..239ebb0413911ceed8a2b28d21abe994f27bdb04 100644 |
--- a/chrome/renderer/extensions/webstore_bindings.cc |
+++ b/chrome/renderer/extensions/webstore_bindings.cc |
@@ -210,7 +210,7 @@ void WebstoreBindings::OnInlineWebstoreInstallResponse( |
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::Integer::New(isolate, install_id), |
v8::Boolean::New(isolate, success), |
v8::String::NewFromUtf8(isolate, error.c_str()), |
@@ -236,7 +236,7 @@ void WebstoreBindings::OnInlineInstallStageChanged(int stage) { |
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, stage_string)}; |
context()->module_system()->CallModuleMethod( |
"webstore", "onInstallStageChanged", arraysize(argv), argv); |
@@ -246,7 +246,7 @@ void WebstoreBindings::OnInlineInstallDownloadProgress(int percent_downloaded) { |
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::Number::New(isolate, percent_downloaded / 100.0)}; |
context()->module_system()->CallModuleMethod( |
"webstore", "onDownloadProgress", arraysize(argv), argv); |