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

Unified Diff: third_party/WebKit/Source/core/page/PageAnimator.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/core/page/Page.cpp ('k') | third_party/WebKit/Source/core/page/PageAnimator.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/page/PageAnimator.h
diff --git a/third_party/WebKit/Source/core/page/PageAnimator.h b/third_party/WebKit/Source/core/page/PageAnimator.h
index 8f4af1099ab4ee9eeb4029a5f820200db250fcef..eb318a4b582b1e87a744091434e90e45c316dc9f 100644
--- a/third_party/WebKit/Source/core/page/PageAnimator.h
+++ b/third_party/WebKit/Source/core/page/PageAnimator.h
@@ -14,9 +14,9 @@ namespace blink {
class LocalFrame;
class Page;
-class CORE_EXPORT PageAnimator final : public RefCountedWillBeGarbageCollected<PageAnimator> {
+class CORE_EXPORT PageAnimator final : public GarbageCollected<PageAnimator> {
public:
- static PassRefPtrWillBeRawPtr<PageAnimator> create(Page&);
+ static RawPtr<PageAnimator> create(Page&);
DECLARE_TRACE();
void scheduleVisualUpdate(LocalFrame*);
void serviceScriptedAnimations(double monotonicAnimationStartTime);
@@ -30,7 +30,7 @@ public:
private:
explicit PageAnimator(Page&);
- RawPtrWillBeMember<Page> m_page;
+ Member<Page> m_page;
bool m_servicingAnimations;
bool m_updatingLayoutAndStyleForPainting;
AnimationClock m_animationClock;
« no previous file with comments | « third_party/WebKit/Source/core/page/Page.cpp ('k') | third_party/WebKit/Source/core/page/PageAnimator.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698