| Index: third_party/WebKit/Source/platform/scroll/ScrollableArea.h
|
| diff --git a/third_party/WebKit/Source/platform/scroll/ScrollableArea.h b/third_party/WebKit/Source/platform/scroll/ScrollableArea.h
|
| index 06c64bf6d10ca24c537aede21a7f80f58435f925..cea0e0e73d0c4ace4064782c6f53c97ce575c477 100644
|
| --- a/third_party/WebKit/Source/platform/scroll/ScrollableArea.h
|
| +++ b/third_party/WebKit/Source/platform/scroll/ScrollableArea.h
|
| @@ -63,7 +63,7 @@ enum IncludeScrollbarsInRect {
|
| };
|
|
|
| #if ENABLE(OILPAN)
|
| -// Oilpan: Using the transition type WillBeGarbageCollectedMixin is
|
| +// Oilpan: Using the transition type GarbageCollectedMixin is
|
| // problematic non-Oilpan as the type expands to DummyBase, exporting it
|
| // also from 'platform' as a result. Bringing about duplicate DummyBases
|
| // as core also exports same; with component build linking fails as a
|
| @@ -326,8 +326,8 @@ private:
|
| virtual int documentStep(ScrollbarOrientation) const;
|
| virtual float pixelStep(ScrollbarOrientation) const;
|
|
|
| - mutable OwnPtrWillBeMember<ScrollAnimatorBase> m_scrollAnimator;
|
| - mutable OwnPtrWillBeMember<ProgrammaticScrollAnimator> m_programmaticScrollAnimator;
|
| + mutable Member<ScrollAnimatorBase> m_scrollAnimator;
|
| + mutable Member<ProgrammaticScrollAnimator> m_programmaticScrollAnimator;
|
|
|
| unsigned m_scrollbarOverlayStyle : 2; // ScrollbarOverlayStyle
|
|
|
|
|