| Index: third_party/WebKit/Source/bindings/tests/results/core/V8SVGTestInterface.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/tests/results/core/V8SVGTestInterface.cpp b/third_party/WebKit/Source/bindings/tests/results/core/V8SVGTestInterface.cpp
|
| index d3bcf296c9c6f8a591cece54f13e8724cab9323f..0bf7eee8a516a72606563b5cb68c6068cfc1747d 100644
|
| --- a/third_party/WebKit/Source/bindings/tests/results/core/V8SVGTestInterface.cpp
|
| +++ b/third_party/WebKit/Source/bindings/tests/results/core/V8SVGTestInterface.cpp
|
| @@ -11,7 +11,7 @@
|
| #include "bindings/core/v8/V8ObjectConstructor.h"
|
| #include "core/SVGNames.h"
|
| #include "core/dom/Document.h"
|
| -#include "core/dom/custom/CustomElementProcessingStack.h"
|
| +#include "core/dom/custom/V0CustomElementProcessingStack.h"
|
| #include "wtf/GetPtr.h"
|
| #include "wtf/RefPtr.h"
|
|
|
| @@ -54,14 +54,14 @@ static void typeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::Function
|
| V8StringResource<> cppValue = v8Value;
|
| if (!cppValue.prepare())
|
| return;
|
| - CustomElementProcessingStack::CallbackDeliveryScope deliveryScope;
|
| + V0CustomElementProcessingStack::CallbackDeliveryScope deliveryScope;
|
| impl->setAttribute(SVGNames::typeAttr, cppValue);
|
| }
|
|
|
| static void typeAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info)
|
| {
|
| v8::Local<v8::Value> v8Value = info[0];
|
| - CustomElementProcessingStack::CallbackDeliveryScope deliveryScope;
|
| + V0CustomElementProcessingStack::CallbackDeliveryScope deliveryScope;
|
| SVGTestInterfaceV8Internal::typeAttributeSetter(v8Value, info);
|
| }
|
|
|
|
|