Index: third_party/WebKit/Source/bindings/core/v8/CustomElementConstructorBuilder.cpp |
diff --git a/third_party/WebKit/Source/bindings/core/v8/CustomElementConstructorBuilder.cpp b/third_party/WebKit/Source/bindings/core/v8/CustomElementConstructorBuilder.cpp |
index a601d092406f948bba9afbee038559e3993671c2..5a7049cee97ed81ad4b39989509c6f71c9076c18 100644 |
--- a/third_party/WebKit/Source/bindings/core/v8/CustomElementConstructorBuilder.cpp |
+++ b/third_party/WebKit/Source/bindings/core/v8/CustomElementConstructorBuilder.cpp |
@@ -125,7 +125,7 @@ bool CustomElementConstructorBuilder::validateOptions(const AtomicString& type, |
return true; |
} |
-PassRefPtrWillBeRawPtr<CustomElementLifecycleCallbacks> CustomElementConstructorBuilder::createCallbacks() |
+RawPtr<CustomElementLifecycleCallbacks> CustomElementConstructorBuilder::createCallbacks() |
{ |
ASSERT(!m_prototype.IsEmpty()); |
@@ -282,7 +282,7 @@ static void constructCustomElement(const v8::FunctionCallbackInfo<v8::Value>& in |
ExceptionState exceptionState(ExceptionState::ConstructionContext, "CustomElement", info.Holder(), info.GetIsolate()); |
CustomElementProcessingStack::CallbackDeliveryScope deliveryScope; |
- RefPtrWillBeRawPtr<Element> element = document->createElementNS(namespaceURI, tagName, maybeType->IsNull() ? nullAtom : type, exceptionState); |
+ RawPtr<Element> element = document->createElementNS(namespaceURI, tagName, maybeType->IsNull() ? nullAtom : type, exceptionState); |
if (exceptionState.throwIfNeeded()) |
return; |
v8SetReturnValueFast(info, element.release(), document); |