| 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 2087bfe2ebb632c072dd36eb436ea0e5be315592..9511bd39e10e280e7e0e5e4b9bac01db23b710ed 100644
|
| --- a/third_party/WebKit/Source/core/frame/FrameView.h
|
| +++ b/third_party/WebKit/Source/core/frame/FrameView.h
|
| @@ -405,9 +405,6 @@ public:
|
| // host window in the window's coordinate space.
|
| HostWindow* getHostWindow() const;
|
|
|
| - // Returns a clip rect in host window coordinates. Used to clip the blit on a scroll.
|
| - IntRect windowClipRect(IncludeScrollbarsInRect = ExcludeScrollbars) const;
|
| -
|
| typedef HeapHashSet<Member<Widget>> ChildrenWidgetSet;
|
|
|
| // Functions for child manipulation and inspection.
|
| @@ -627,7 +624,7 @@ protected:
|
| bool scrollContentsFastPath(const IntSize& scrollDelta);
|
|
|
| // Scroll the content by invalidating everything.
|
| - void scrollContentsSlowPath(const IntRect& updateRect);
|
| + void scrollContentsSlowPath();
|
|
|
| // These functions are used to create/destroy scrollbars.
|
| void setHasHorizontalScrollbar(bool);
|
| @@ -757,8 +754,6 @@ private:
|
| void adjustScrollPositionFromUpdateScrollbars();
|
| bool visualViewportSuppliesScrollbars() const;
|
|
|
| - IntRect rectToCopyOnScroll() const;
|
| -
|
| bool isFrameViewScrollbar(const Widget* child) const { return horizontalScrollbar() == child || verticalScrollbar() == child; }
|
|
|
| ScrollingCoordinator* scrollingCoordinator() const;
|
|
|