Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(618)

Unified Diff: Source/core/dom/DOMDataView.cpp

Issue 1303823004: [bindings] Replace last traces of v8::Handle to v8::Local (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/bindings/core/v8/ScriptFunctionCall.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/DOMDataView.cpp
diff --git a/Source/core/dom/DOMDataView.cpp b/Source/core/dom/DOMDataView.cpp
index 7e86891277a38bb5b0b6c7486969cb92f2fbb012..a02e3a8db2b2ec29505d4b67f3294bb278ba0eca 100644
--- a/Source/core/dom/DOMDataView.cpp
+++ b/Source/core/dom/DOMDataView.cpp
@@ -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());
« no previous file with comments | « Source/bindings/core/v8/ScriptFunctionCall.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698