| Index: Source/bindings/core/v8/CustomElementConstructorBuilder.cpp
|
| diff --git a/Source/bindings/core/v8/CustomElementConstructorBuilder.cpp b/Source/bindings/core/v8/CustomElementConstructorBuilder.cpp
|
| index 9dac18b0611a8adaa0b24a6021f036e9b2e0a704..c98c1e197e909f476d65df819cc02db5644be08b 100644
|
| --- a/Source/bindings/core/v8/CustomElementConstructorBuilder.cpp
|
| +++ b/Source/bindings/core/v8/CustomElementConstructorBuilder.cpp
|
| @@ -44,10 +44,10 @@
|
| #include "core/V8HTMLElementWrapperFactory.h" // FIXME: should be bindings/core/v8
|
| #include "core/V8SVGElementWrapperFactory.h" // FIXME: should be bindings/core/v8
|
| #include "core/dom/Document.h"
|
| -#include "core/dom/custom/CustomElementCallbackDispatcher.h"
|
| #include "core/dom/custom/CustomElementDefinition.h"
|
| #include "core/dom/custom/CustomElementDescriptor.h"
|
| #include "core/dom/custom/CustomElementException.h"
|
| +#include "core/dom/custom/CustomElementProcessingStack.h"
|
| #include "wtf/Assertions.h"
|
|
|
| namespace blink {
|
| @@ -293,7 +293,7 @@ static void constructCustomElement(const v8::FunctionCallbackInfo<v8::Value>& in
|
| TOSTRING_VOID(V8StringResource<>, type, maybeType);
|
|
|
| ExceptionState exceptionState(ExceptionState::ConstructionContext, "CustomElement", info.Holder(), info.GetIsolate());
|
| - CustomElementCallbackDispatcher::CallbackDeliveryScope deliveryScope;
|
| + CustomElementProcessingStack::CallbackDeliveryScope deliveryScope;
|
| RefPtrWillBeRawPtr<Element> element = document->createElementNS(namespaceURI, tagName, maybeType->IsNull() ? nullAtom : type, exceptionState);
|
| if (exceptionState.throwIfNeeded())
|
| return;
|
|
|