| Index: content/renderer/pepper/plugin_object.cc
|
| diff --git a/content/renderer/pepper/plugin_object.cc b/content/renderer/pepper/plugin_object.cc
|
| index ada0fd9b7bfd1c3b4b15e1b9a44f16b5fc811117..2c82c3f32d6cf752c4de18553aab03328e73517c 100644
|
| --- a/content/renderer/pepper/plugin_object.cc
|
| +++ b/content/renderer/pepper/plugin_object.cc
|
| @@ -58,7 +58,7 @@ gin::WrapperInfo PluginObject::kWrapperInfo = {gin::kEmbedderNativeGin};
|
|
|
| // static
|
| PluginObject* PluginObject::FromV8Object(v8::Isolate* isolate,
|
| - v8::Handle<v8::Object> v8_object) {
|
| + v8::Local<v8::Object> v8_object) {
|
| PluginObject* plugin_object;
|
| if (!v8_object.IsEmpty() &&
|
| gin::ConvertFromV8(isolate, v8_object, &plugin_object)) {
|
| @@ -201,7 +201,7 @@ v8::Local<v8::Value> PluginObject::GetPropertyOrMethod(v8::Isolate* isolate,
|
| if (try_catch.ThrowException())
|
| return v8::Local<v8::Value>();
|
|
|
| - v8::Handle<v8::Value> result = try_catch.ToV8(result_var.get());
|
| + v8::Local<v8::Value> result = try_catch.ToV8(result_var.get());
|
| if (try_catch.ThrowException())
|
| return v8::Local<v8::Value>();
|
|
|
| @@ -236,7 +236,7 @@ void PluginObject::Call(const std::string& identifier,
|
| ScopedPPVarArray argument_vars(args->Length());
|
|
|
| for (uint32_t i = 0; i < argument_vars.size(); ++i) {
|
| - v8::Handle<v8::Value> arg;
|
| + v8::Local<v8::Value> arg;
|
| if (!args->GetNext(&arg)) {
|
| NOTREACHED();
|
| }
|
| @@ -259,7 +259,7 @@ void PluginObject::Call(const std::string& identifier,
|
| if (try_catch.ThrowException())
|
| return;
|
|
|
| - v8::Handle<v8::Value> result = try_catch.ToV8(result_var.get());
|
| + v8::Local<v8::Value> result = try_catch.ToV8(result_var.get());
|
| if (try_catch.ThrowException())
|
| return;
|
|
|
|
|