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

Unified Diff: Source/bindings/tests/results/core/V8Uint8ClampedArray.cpp

Issue 819853002: [bindings] Translate all assignments in bindings/templates to use Local<> in place of Handle<>. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years 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
Index: Source/bindings/tests/results/core/V8Uint8ClampedArray.cpp
diff --git a/Source/bindings/tests/results/core/V8Uint8ClampedArray.cpp b/Source/bindings/tests/results/core/V8Uint8ClampedArray.cpp
index 6c4bddfeaad844804aa5abc94319e8a3f0aa2b03..1859c7f1adc01d6427631db6db932e1e603b4d88 100644
--- a/Source/bindings/tests/results/core/V8Uint8ClampedArray.cpp
+++ b/Source/bindings/tests/results/core/V8Uint8ClampedArray.cpp
@@ -41,7 +41,7 @@ TestUint8ClampedArray* V8Uint8ClampedArray::toImpl(v8::Handle<v8::Object> object
if (scriptWrappable)
return scriptWrappable->toImpl<TestUint8ClampedArray>();
- v8::Handle<v8::Uint8ClampedArray> v8View = object.As<v8::Uint8ClampedArray>();
+ v8::Local<v8::Uint8ClampedArray> v8View = object.As<v8::Uint8ClampedArray>();
RefPtr<TestUint8ClampedArray> typedArray = TestUint8ClampedArray::create(V8ArrayBuffer::toImpl(v8View->Buffer()), v8View->ByteOffset(), v8View->Length());
typedArray->associateWithWrapper(v8::Isolate::GetCurrent(), typedArray->wrapperTypeInfo(), object);
« no previous file with comments | « Source/bindings/tests/results/core/V8TestTypedefs.cpp ('k') | Source/bindings/tests/results/modules/V8TestInterface5.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698