| Index: third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceDocument.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceDocument.cpp b/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceDocument.cpp
|
| index e7638e6bc17991c730bde651d146e849abdd5900..69d209452fcd133cf526a15c02f06983d720dd80 100644
|
| --- a/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceDocument.cpp
|
| +++ b/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceDocument.cpp
|
| @@ -27,7 +27,7 @@ namespace blink {
|
| #pragma clang diagnostic push
|
| #pragma clang diagnostic ignored "-Wglobal-constructors"
|
| #endif
|
| -const WrapperTypeInfo V8TestInterfaceDocument::wrapperTypeInfo = { gin::kEmbedderBlink, V8TestInterfaceDocument::domTemplate, V8TestInterfaceDocument::refObject, V8TestInterfaceDocument::derefObject, V8TestInterfaceDocument::trace, 0, 0, V8TestInterfaceDocument::preparePrototypeAndInterfaceObject, V8TestInterfaceDocument::installConditionallyEnabledProperties, "TestInterfaceDocument", &V8Document::wrapperTypeInfo, WrapperTypeInfo::WrapperTypeObjectPrototype, WrapperTypeInfo::NodeClassId, WrapperTypeInfo::InheritFromEventTarget, WrapperTypeInfo::Dependent, WrapperTypeInfo::WillBeGarbageCollectedObject };
|
| +const WrapperTypeInfo V8TestInterfaceDocument::wrapperTypeInfo = { gin::kEmbedderBlink, V8TestInterfaceDocument::domTemplate, V8TestInterfaceDocument::refObject, V8TestInterfaceDocument::derefObject, V8TestInterfaceDocument::trace, 0, 0, V8TestInterfaceDocument::preparePrototypeAndInterfaceObject, V8TestInterfaceDocument::installConditionallyEnabledProperties, "TestInterfaceDocument", &V8Document::wrapperTypeInfo, WrapperTypeInfo::WrapperTypeObjectPrototype, WrapperTypeInfo::NodeClassId, WrapperTypeInfo::InheritFromEventTarget, WrapperTypeInfo::Dependent, WrapperTypeInfo::GarbageCollectedObject };
|
| #if defined(COMPONENT_BUILD) && defined(WIN32) && COMPILER(CLANG)
|
| #pragma clang diagnostic pop
|
| #endif
|
| @@ -55,7 +55,7 @@ static void locationAttributeSetter(v8::Local<v8::Value> v8Value, const v8::Func
|
| {
|
| v8::Local<v8::Object> holder = info.Holder();
|
| TestInterfaceDocument* proxyImpl = V8TestInterfaceDocument::toImpl(holder);
|
| - RefPtrWillBeRawPtr<Location> impl = WTF::getPtr(proxyImpl->location());
|
| + RawPtr<Location> impl = WTF::getPtr(proxyImpl->location());
|
| if (!impl)
|
| return;
|
| V8StringResource<> cppValue = v8Value;
|
| @@ -112,16 +112,10 @@ TestInterfaceDocument* V8TestInterfaceDocument::toImplWithTypeCheck(v8::Isolate*
|
|
|
| void V8TestInterfaceDocument::refObject(ScriptWrappable* scriptWrappable)
|
| {
|
| -#if !ENABLE(OILPAN)
|
| - scriptWrappable->toImpl<TestInterfaceDocument>()->ref();
|
| -#endif
|
| }
|
|
|
| void V8TestInterfaceDocument::derefObject(ScriptWrappable* scriptWrappable)
|
| {
|
| -#if !ENABLE(OILPAN)
|
| - scriptWrappable->toImpl<TestInterfaceDocument>()->deref();
|
| -#endif
|
| }
|
|
|
| } // namespace blink
|
|
|