Commit a61c1dc4 authored by vivek.vg@samsung.com's avatar vivek.vg@samsung.com

[bindings] Replace last traces of v8::Handle to v8::Local

R=haraken@chromium.org

Review URL: https://codereview.chromium.org/1303823004

git-svn-id: svn://svn.chromium.org/blink/trunk@200942 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent 3e73968f
......@@ -61,7 +61,7 @@ public:
ScriptFunctionCall(const ScriptValue& thisObject, const String& name);
ScriptValue call(bool& hadException, bool reportExceptions = true);
ScriptValue call();
v8::Handle<v8::Function> function();
v8::Local<v8::Function> function();
ScriptValue callWithoutExceptionHandling();
protected:
......
......@@ -66,7 +66,7 @@ v8::Local<v8::Object> DOMDataView::wrap(v8::Isolate* isolate, v8::Local<v8::Obje
const WrapperTypeInfo* wrapperTypeInfo = this->wrapperTypeInfo();
v8::Local<v8::Value> v8Buffer = toV8(buffer(), creationContext, isolate);
if (v8Buffer.IsEmpty())
return v8::Handle<v8::Object>();
return v8::Local<v8::Object>();
ASSERT(v8Buffer->IsArrayBuffer());
v8::Local<v8::Object> wrapper = v8::DataView::New(v8Buffer.As<v8::ArrayBuffer>(), byteOffset(), byteLength());
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment