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

Unified Diff: third_party/WebKit/Source/platform/scroll/ScrollAnimatorBase.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, 10 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/platform/scroll/ScrollAnimatorBase.h
diff --git a/third_party/WebKit/Source/platform/scroll/ScrollAnimatorBase.h b/third_party/WebKit/Source/platform/scroll/ScrollAnimatorBase.h
index 7893a187544bc2ebdd0b812061fd1cb964817cee..784fa99a45545557bfe32a60bc205c302a2e5522 100644
--- a/third_party/WebKit/Source/platform/scroll/ScrollAnimatorBase.h
+++ b/third_party/WebKit/Source/platform/scroll/ScrollAnimatorBase.h
@@ -48,7 +48,7 @@ class WebCompositorAnimationTimeline;
class PLATFORM_EXPORT ScrollAnimatorBase : public ScrollAnimatorCompositorCoordinator {
public:
- static PassOwnPtrWillBeRawPtr<ScrollAnimatorBase> create(ScrollableArea*);
+ static RawPtr<ScrollAnimatorBase> create(ScrollableArea*);
virtual ~ScrollAnimatorBase();
@@ -120,7 +120,7 @@ protected:
float clampScrollPosition(ScrollbarOrientation, float) const;
- RawPtrWillBeMember<ScrollableArea> m_scrollableArea;
+ Member<ScrollableArea> m_scrollableArea;
float m_currentPosX; // We avoid using a FloatPoint in order to reduce
float m_currentPosY; // subclass code complexity.
};

Powered by Google App Engine
This is Rietveld 408576698