| 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..993c5d91315d52d5dcfda4b16a77a0e18538f2ec 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)
|
|
|