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

Unified Diff: third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskImportStep.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/CustomElementMicrotaskImportStep.h
diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskImportStep.h b/third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskImportStep.h
index ec042e1e6e060e3f6cfebf165efd4780d56414a8..37d81b3ad587b3a10c04d5c2ec681e2b5725b1da 100644
--- a/third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskImportStep.h
+++ b/third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskImportStep.h
@@ -52,7 +52,7 @@ class HTMLImportChild;
// import isn't "ready" (finished parsing and running script.)
class CustomElementMicrotaskImportStep final : public CustomElementMicrotaskStep {
public:
- static PassOwnPtrWillBeRawPtr<CustomElementMicrotaskImportStep> create(HTMLImportChild*);
+ static RawPtr<CustomElementMicrotaskImportStep> create(HTMLImportChild*);
~CustomElementMicrotaskImportStep() override;
// API for HTML Imports
@@ -76,11 +76,11 @@ private:
#if !defined(NDEBUG)
void show(unsigned indent) override;
#endif
- WeakPtrWillBeWeakMember<HTMLImportChild> m_import;
+ WeakMember<HTMLImportChild> m_import;
#if !ENABLE(OILPAN)
WeakPtrFactory<CustomElementMicrotaskImportStep> m_weakFactory;
#endif
- RefPtrWillBeMember<CustomElementSyncMicrotaskQueue> m_queue;
+ Member<CustomElementSyncMicrotaskQueue> m_queue;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698