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

Unified Diff: third_party/WebKit/Source/core/animation/Animation.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
« no previous file with comments | « third_party/WebKit/Source/config.gni ('k') | third_party/WebKit/Source/core/animation/Animation.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/animation/Animation.h
diff --git a/third_party/WebKit/Source/core/animation/Animation.h b/third_party/WebKit/Source/core/animation/Animation.h
index 05222b22b381bef1f03c9a95a71baeb1e1343ab4..19295952d62e9d868759ec688182123f6bd48a87 100644
--- a/third_party/WebKit/Source/core/animation/Animation.h
+++ b/third_party/WebKit/Source/core/animation/Animation.h
@@ -61,7 +61,7 @@ class CORE_EXPORT Animation final
, public CompositorAnimationPlayerClient {
DEFINE_WRAPPERTYPEINFO();
REFCOUNTED_GARBAGE_COLLECTED_EVENT_TARGET(Animation);
- WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(Animation);
+ USING_GARBAGE_COLLECTED_MIXIN(Animation);
public:
enum AnimationPlayState {
Unset,
@@ -181,8 +181,8 @@ public:
DECLARE_VIRTUAL_TRACE();
protected:
- DispatchEventResult dispatchEventInternal(PassRefPtrWillBeRawPtr<Event>) override;
- bool addEventListenerInternal(const AtomicString& eventType, PassRefPtrWillBeRawPtr<EventListener>, const EventListenerOptions&) override;
+ DispatchEventResult dispatchEventInternal(RawPtr<Event>) override;
+ bool addEventListenerInternal(const AtomicString& eventType, RawPtr<EventListener>, const EventListenerOptions&) override;
private:
Animation(ExecutionContext*, AnimationTimeline&, AnimationEffect*);
@@ -243,9 +243,9 @@ private:
// Holds a 'finished' event queued for asynchronous dispatch via the
// ScriptedAnimationController. This object remains active until the
// event is actually dispatched.
- RefPtrWillBeMember<Event> m_pendingFinishedEvent;
+ Member<Event> m_pendingFinishedEvent;
- RefPtrWillBeMember<Event> m_pendingCancelledEvent;
+ Member<Event> m_pendingCancelledEvent;
enum CompositorAction {
None,
« no previous file with comments | « third_party/WebKit/Source/config.gni ('k') | third_party/WebKit/Source/core/animation/Animation.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698