| Index: third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskResolutionStep.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskResolutionStep.cpp b/third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskResolutionStep.cpp
|
| index 8502d0b5a8e4fa732a7305c918813c325e29ae51..435732f6ffcd803c332d5e910d33510753f0b97c 100644
|
| --- a/third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskResolutionStep.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskResolutionStep.cpp
|
| @@ -35,12 +35,12 @@
|
|
|
| namespace blink {
|
|
|
| -PassOwnPtrWillBeRawPtr<CustomElementMicrotaskResolutionStep> CustomElementMicrotaskResolutionStep::create(PassRefPtrWillBeRawPtr<CustomElementRegistrationContext> context, PassRefPtrWillBeRawPtr<Element> element, const CustomElementDescriptor& descriptor)
|
| +RawPtr<CustomElementMicrotaskResolutionStep> CustomElementMicrotaskResolutionStep::create(RawPtr<CustomElementRegistrationContext> context, RawPtr<Element> element, const CustomElementDescriptor& descriptor)
|
| {
|
| - return adoptPtrWillBeNoop(new CustomElementMicrotaskResolutionStep(context, element, descriptor));
|
| + return new CustomElementMicrotaskResolutionStep(context, element, descriptor);
|
| }
|
|
|
| -CustomElementMicrotaskResolutionStep::CustomElementMicrotaskResolutionStep(PassRefPtrWillBeRawPtr<CustomElementRegistrationContext> context, PassRefPtrWillBeRawPtr<Element> element, const CustomElementDescriptor& descriptor)
|
| +CustomElementMicrotaskResolutionStep::CustomElementMicrotaskResolutionStep(RawPtr<CustomElementRegistrationContext> context, RawPtr<Element> element, const CustomElementDescriptor& descriptor)
|
| : m_context(context)
|
| , m_element(element)
|
| , m_descriptor(descriptor)
|
|
|