| Index: third_party/WebKit/Source/core/frame/FrameView.h
|
| diff --git a/third_party/WebKit/Source/core/frame/FrameView.h b/third_party/WebKit/Source/core/frame/FrameView.h
|
| index 66381d55971485e9fe54c7a2e3a90aa60bbeb9ee..9dbff27dbb091230d2bdfbf31fb0d629885bd64f 100644
|
| --- a/third_party/WebKit/Source/core/frame/FrameView.h
|
| +++ b/third_party/WebKit/Source/core/frame/FrameView.h
|
| @@ -714,11 +714,6 @@ class CORE_EXPORT FrameView final
|
| return m_scrollTranslation.get();
|
| }
|
|
|
| - void setScroll(PassRefPtr<ScrollPaintPropertyNode> scroll) {
|
| - m_scroll = scroll;
|
| - }
|
| - ScrollPaintPropertyNode* scroll() const { return m_scroll.get(); }
|
| -
|
| void setContentClip(PassRefPtr<ClipPaintPropertyNode> contentClip) {
|
| m_contentClip = contentClip;
|
| }
|
| @@ -1152,7 +1147,6 @@ class CORE_EXPORT FrameView final
|
| // enabled.
|
| RefPtr<TransformPaintPropertyNode> m_preTranslation;
|
| RefPtr<TransformPaintPropertyNode> m_scrollTranslation;
|
| - RefPtr<ScrollPaintPropertyNode> m_scroll;
|
| // The content clip clips the document (= LayoutView) but not the scrollbars.
|
| // TODO(trchen): This will not be needed once settings->rootLayerScrolls() is
|
| // enabled.
|
|
|