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

Unified Diff: Source/core/frame/FrameView.h

Issue 1093383003: Remove mainthread overhang painting code (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 8 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 | « no previous file | Source/core/frame/FrameView.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/frame/FrameView.h
diff --git a/Source/core/frame/FrameView.h b/Source/core/frame/FrameView.h
index 1a2bcd383df6be561b2025167bc1b455ebeddfd4..1fc10b77291852ba144db88532494a8a0cb1ffc8 100644
--- a/Source/core/frame/FrameView.h
+++ b/Source/core/frame/FrameView.h
@@ -458,8 +458,6 @@ public:
int scrollX() const { return scrollPosition().x(); }
int scrollY() const { return scrollPosition().y(); }
- virtual IntSize overhangAmount() const override;
-
void cacheCurrentScrollPosition() { m_cachedScrollPosition = scrollPositionDouble(); }
DoublePoint cachedScrollPosition() const { return m_cachedScrollPosition; }
@@ -573,8 +571,6 @@ public:
void notifyPageThatContentAreaWillPaint() const;
FrameView* parentFrameView() const;
- void calculateOverhangAreasForPainting(IntRect& horizontalOverhangRect, IntRect& verticalOverhangRect);
-
// Returns the scrollable area for the frame.
ScrollableArea* scrollableArea();
@@ -721,8 +717,6 @@ private:
IntRect rectToCopyOnScroll() const;
- void updateOverhangAreas();
-
bool isFrameViewScrollbar(const Widget* child) const { return horizontalScrollbar() == child || verticalScrollbar() == child; }
ScrollingCoordinator* scrollingCoordinator();
« no previous file with comments | « no previous file | Source/core/frame/FrameView.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698