| Index: third_party/WebKit/Source/core/dom/custom/CustomElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElement.cpp b/third_party/WebKit/Source/core/dom/custom/CustomElement.cpp
|
| index cb3932c5db9c6dfd4d220380d0859d9a4cfd7e8e..51bb69597cda3c0f45f6d3804eecb4a7bb3d3267 100644
|
| --- a/third_party/WebKit/Source/core/dom/custom/CustomElement.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/custom/CustomElement.cpp
|
| @@ -102,9 +102,9 @@ bool CustomElement::isValidName(const AtomicString& name, NameSet validNames)
|
| return false;
|
| }
|
|
|
| -void CustomElement::define(Element* element, PassRefPtrWillBeRawPtr<CustomElementDefinition> passDefinition)
|
| +void CustomElement::define(Element* element, RawPtr<CustomElementDefinition> passDefinition)
|
| {
|
| - RefPtrWillBeRawPtr<CustomElementDefinition> definition(passDefinition);
|
| + RawPtr<CustomElementDefinition> definition(passDefinition);
|
|
|
| switch (element->customElementState()) {
|
| case Element::NotCustomElement:
|
|
|