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

Unified Diff: third_party/WebKit/Source/core/dom/custom/CustomElementCallbackInvocation.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/CustomElementCallbackInvocation.h
diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementCallbackInvocation.h b/third_party/WebKit/Source/core/dom/custom/CustomElementCallbackInvocation.h
index 0510c7052370799d6436df5e96d8c2e2a5237e49..ede43ec9e7b7e366f5fadef5f4ffb88535907949 100644
--- a/third_party/WebKit/Source/core/dom/custom/CustomElementCallbackInvocation.h
+++ b/third_party/WebKit/Source/core/dom/custom/CustomElementCallbackInvocation.h
@@ -43,11 +43,11 @@ namespace blink {
class CustomElementCallbackInvocation : public CustomElementProcessingStep {
WTF_MAKE_NONCOPYABLE(CustomElementCallbackInvocation);
public:
- static PassOwnPtrWillBeRawPtr<CustomElementCallbackInvocation> createInvocation(PassRefPtrWillBeRawPtr<CustomElementLifecycleCallbacks>, CustomElementLifecycleCallbacks::CallbackType);
- static PassOwnPtrWillBeRawPtr<CustomElementCallbackInvocation> createAttributeChangedInvocation(PassRefPtrWillBeRawPtr<CustomElementLifecycleCallbacks>, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue);
+ static RawPtr<CustomElementCallbackInvocation> createInvocation(RawPtr<CustomElementLifecycleCallbacks>, CustomElementLifecycleCallbacks::CallbackType);
+ static RawPtr<CustomElementCallbackInvocation> createAttributeChangedInvocation(RawPtr<CustomElementLifecycleCallbacks>, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue);
protected:
- CustomElementCallbackInvocation(PassRefPtrWillBeRawPtr<CustomElementLifecycleCallbacks> callbacks)
+ CustomElementCallbackInvocation(RawPtr<CustomElementLifecycleCallbacks> callbacks)
: m_callbacks(callbacks)
{
}
@@ -57,7 +57,7 @@ protected:
DECLARE_VIRTUAL_TRACE();
private:
- RefPtrWillBeMember<CustomElementLifecycleCallbacks> m_callbacks;
+ Member<CustomElementLifecycleCallbacks> m_callbacks;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698