Index: Source/core/dom/DOMTypedArray.h |
diff --git a/Source/core/dom/DOMTypedArray.h b/Source/core/dom/DOMTypedArray.h |
index a7e6d53b501280c20b623aed66bc0b39d5ec278b..207e6b74df8ef02af74786385c8169a0b1bc983a 100644 |
--- a/Source/core/dom/DOMTypedArray.h |
+++ b/Source/core/dom/DOMTypedArray.h |
@@ -68,8 +68,8 @@ public: |
// is responsible for doing so and returning undefined as necessary. |
ValueType item(unsigned index) const { return view()->item(index); } |
- virtual v8::Handle<v8::Object> wrap(v8::Handle<v8::Object> creationContext, v8::Isolate*) override; |
- virtual v8::Handle<v8::Object> associateWithWrapper(v8::Isolate*, const WrapperTypeInfo*, v8::Handle<v8::Object> wrapper) override; |
+ virtual v8::Local<v8::Object> wrap(v8::Local<v8::Object> creationContext, v8::Isolate*) override; |
+ virtual v8::Local<v8::Object> associateWithWrapper(v8::Isolate*, const WrapperTypeInfo*, v8::Local<v8::Object> wrapper) override; |
private: |
explicit DOMTypedArray(PassRefPtr<WTFTypedArray> bufferView) |