Index: Source/bindings/tests/results/core/V8TestInterfaceEventConstructor.cpp |
diff --git a/Source/bindings/tests/results/core/V8TestInterfaceEventConstructor.cpp b/Source/bindings/tests/results/core/V8TestInterfaceEventConstructor.cpp |
index 1e8a7947dba70291981b83aeeda5cd9759ef63cb..9be7d77e374d4088d513fe31ca218d43378b6225 100644 |
--- a/Source/bindings/tests/results/core/V8TestInterfaceEventConstructor.cpp |
+++ b/Source/bindings/tests/results/core/V8TestInterfaceEventConstructor.cpp |
@@ -15,7 +15,7 @@ |
#include "bindings/core/v8/V8HiddenValue.h" |
#include "bindings/core/v8/V8ObjectConstructor.h" |
#include "bindings/core/v8/V8TestInterfaceEmpty.h" |
-#include "bindings/core/v8/custom/V8Uint8ArrayCustom.h" |
+#include "bindings/core/v8/V8Uint8Array.h" |
#include "core/dom/ContextFeatures.h" |
#include "core/dom/Document.h" |
#include "core/frame/LocalDOMWindow.h" |
@@ -110,7 +110,7 @@ static void initializedByEventConstructorReadonlyUint8ArrayAttributeAttributeGet |
{ |
v8::Handle<v8::Object> holder = info.Holder(); |
TestInterfaceEventConstructor* impl = V8TestInterfaceEventConstructor::toImpl(holder); |
- RefPtr<Uint8Array> cppValue(impl->initializedByEventConstructorReadonlyUint8ArrayAttribute()); |
+ RefPtr<DOMUint8Array> cppValue(impl->initializedByEventConstructorReadonlyUint8ArrayAttribute()); |
if (cppValue && DOMDataStore::setReturnValueFromWrapper<V8Uint8Array>(info.GetReturnValue(), cppValue.get())) |
return; |
v8::Handle<v8::Value> wrapper = toV8(cppValue.get(), holder, info.GetIsolate()); |
@@ -368,9 +368,10 @@ v8::Handle<v8::Object> V8TestInterfaceEventConstructor::findInstanceInPrototypeC |
return V8PerIsolateData::from(isolate)->findInstanceInPrototypeChain(&wrapperTypeInfo, v8Value); |
} |
+ |
TestInterfaceEventConstructor* V8TestInterfaceEventConstructor::toImplWithTypeCheck(v8::Isolate* isolate, v8::Handle<v8::Value> value) |
{ |
- return hasInstance(value, isolate) ? blink::toScriptWrappableBase(v8::Handle<v8::Object>::Cast(value))->toImpl<TestInterfaceEventConstructor>() : 0; |
+ return hasInstance(value, isolate) ? toImpl(v8::Handle<v8::Object>::Cast(value)) : 0; |
} |