| Index: content/renderer/pepper/v8_var_converter.h
|
| diff --git a/content/renderer/pepper/v8_var_converter.h b/content/renderer/pepper/v8_var_converter.h
|
| index d270832e3a11043d8484029e1c1d11715d65e3d5..2a5a9f9c85a497f81e7d53535b67bacd6d52d87c 100644
|
| --- a/content/renderer/pepper/v8_var_converter.h
|
| +++ b/content/renderer/pepper/v8_var_converter.h
|
| @@ -36,8 +36,8 @@ class CONTENT_EXPORT V8VarConverter {
|
|
|
| // Converts the given PP_Var to a v8::Value. True is returned upon success.
|
| bool ToV8Value(const PP_Var& var,
|
| - v8::Handle<v8::Context> context,
|
| - v8::Handle<v8::Value>* result);
|
| + v8::Local<v8::Context> context,
|
| + v8::Local<v8::Value>* result);
|
|
|
| struct VarResult {
|
| public:
|
| @@ -66,16 +66,16 @@ class CONTENT_EXPORT V8VarConverter {
|
| // the conversion can occur synchronously, |callback| will not be run,
|
| // otherwise it will be run.
|
| VarResult FromV8Value(
|
| - v8::Handle<v8::Value> val,
|
| - v8::Handle<v8::Context> context,
|
| + v8::Local<v8::Value> val,
|
| + v8::Local<v8::Context> context,
|
| const base::Callback<void(const ppapi::ScopedPPVar&, bool)>& callback);
|
| - bool FromV8ValueSync(v8::Handle<v8::Value> val,
|
| - v8::Handle<v8::Context> context,
|
| + bool FromV8ValueSync(v8::Local<v8::Value> val,
|
| + v8::Local<v8::Context> context,
|
| ppapi::ScopedPPVar* result_var);
|
| private:
|
| // Returns true on success, false on failure.
|
| - bool FromV8ValueInternal(v8::Handle<v8::Value> val,
|
| - v8::Handle<v8::Context> context,
|
| + bool FromV8ValueInternal(v8::Local<v8::Value> val,
|
| + v8::Local<v8::Context> context,
|
| ppapi::ScopedPPVar* result_var);
|
|
|
| PP_Instance instance_;
|
|
|