Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(304)

Unified Diff: third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskResolutionStep.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskResolutionStep.h
diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskResolutionStep.h b/third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskResolutionStep.h
index 5e3e17a74aa690a4ad3b045135a06f45ab84fcaa..626122fd01b87780560cf08f4a6802246dd4d71d 100644
--- a/third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskResolutionStep.h
+++ b/third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskResolutionStep.h
@@ -45,14 +45,14 @@ class Element;
class CustomElementMicrotaskResolutionStep final : public CustomElementMicrotaskStep {
public:
- static PassOwnPtrWillBeRawPtr<CustomElementMicrotaskResolutionStep> create(PassRefPtrWillBeRawPtr<CustomElementRegistrationContext>, PassRefPtrWillBeRawPtr<Element>, const CustomElementDescriptor&);
+ static RawPtr<CustomElementMicrotaskResolutionStep> create(RawPtr<CustomElementRegistrationContext>, RawPtr<Element>, const CustomElementDescriptor&);
~CustomElementMicrotaskResolutionStep() override;
DECLARE_VIRTUAL_TRACE();
private:
- CustomElementMicrotaskResolutionStep(PassRefPtrWillBeRawPtr<CustomElementRegistrationContext>, PassRefPtrWillBeRawPtr<Element>, const CustomElementDescriptor&);
+ CustomElementMicrotaskResolutionStep(RawPtr<CustomElementRegistrationContext>, RawPtr<Element>, const CustomElementDescriptor&);
Result process() override;
@@ -60,8 +60,8 @@ private:
void show(unsigned indent) override;
#endif
- RefPtrWillBeMember<CustomElementRegistrationContext> m_context;
- RefPtrWillBeMember<Element> m_element;
+ Member<CustomElementRegistrationContext> m_context;
+ Member<Element> m_element;
CustomElementDescriptor m_descriptor;
};

Powered by Google App Engine
This is Rietveld 408576698