| Index: third_party/WebKit/Source/core/dom/custom/CustomElementRegistry.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementRegistry.cpp b/third_party/WebKit/Source/core/dom/custom/CustomElementRegistry.cpp
|
| index c46e88095ea083b9a3d49bb822b6f06b2410c8a6..df1b06cb763fbea0afa59fb59271fa5f9338f72a 100644
|
| --- a/third_party/WebKit/Source/core/dom/custom/CustomElementRegistry.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/custom/CustomElementRegistry.cpp
|
| @@ -66,7 +66,7 @@ CustomElementDefinition* CustomElementRegistry::registerElement(Document* docume
|
|
|
| ASSERT(!m_documentWasDetached);
|
|
|
| - RefPtrWillBeRawPtr<CustomElementLifecycleCallbacks> lifecycleCallbacks = constructorBuilder->createCallbacks();
|
| + RawPtr<CustomElementLifecycleCallbacks> lifecycleCallbacks = constructorBuilder->createCallbacks();
|
|
|
| // Consulting the constructor builder could execute script and
|
| // kill the document.
|
| @@ -76,7 +76,7 @@ CustomElementDefinition* CustomElementRegistry::registerElement(Document* docume
|
| }
|
|
|
| const CustomElementDescriptor descriptor(type, tagName.namespaceURI(), tagName.localName());
|
| - RefPtrWillBeRawPtr<CustomElementDefinition> definition = CustomElementDefinition::create(descriptor, lifecycleCallbacks);
|
| + RawPtr<CustomElementDefinition> definition = CustomElementDefinition::create(descriptor, lifecycleCallbacks);
|
|
|
| if (!constructorBuilder->createConstructor(document, definition.get(), exceptionState))
|
| return 0;
|
|
|