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

Unified Diff: third_party/WebKit/Source/core/dom/custom/CustomElementDefinition.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/CustomElementDefinition.h
diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementDefinition.h b/third_party/WebKit/Source/core/dom/custom/CustomElementDefinition.h
index d8b73bdddc2967375e7a4d0013397f585761dd7a..3e6b25d94d00ed867d33b5cb3f7ac68a9758057d 100644
--- a/third_party/WebKit/Source/core/dom/custom/CustomElementDefinition.h
+++ b/third_party/WebKit/Source/core/dom/custom/CustomElementDefinition.h
@@ -38,9 +38,9 @@
namespace blink {
-class CustomElementDefinition final : public RefCountedWillBeGarbageCollectedFinalized<CustomElementDefinition> {
+class CustomElementDefinition final : public GarbageCollectedFinalized<CustomElementDefinition> {
public:
- static PassRefPtrWillBeRawPtr<CustomElementDefinition> create(const CustomElementDescriptor&, PassRefPtrWillBeRawPtr<CustomElementLifecycleCallbacks>);
+ static RawPtr<CustomElementDefinition> create(const CustomElementDescriptor&, RawPtr<CustomElementLifecycleCallbacks>);
const CustomElementDescriptor& descriptor() const { return m_descriptor; }
CustomElementLifecycleCallbacks* callbacks() const { return m_callbacks.get(); }
@@ -48,10 +48,10 @@ public:
DECLARE_TRACE();
private:
- CustomElementDefinition(const CustomElementDescriptor&, PassRefPtrWillBeRawPtr<CustomElementLifecycleCallbacks>);
+ CustomElementDefinition(const CustomElementDescriptor&, RawPtr<CustomElementLifecycleCallbacks>);
CustomElementDescriptor m_descriptor;
- RefPtrWillBeMember<CustomElementLifecycleCallbacks> m_callbacks;
+ Member<CustomElementLifecycleCallbacks> m_callbacks;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698