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

Unified Diff: sky/engine/core/frame/FrameView.h

Issue 678193005: Remove more frame-level scrolling machinery. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 2 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 | sky/engine/core/frame/FrameView.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/frame/FrameView.h
diff --git a/sky/engine/core/frame/FrameView.h b/sky/engine/core/frame/FrameView.h
index e946050b004a52a433fccbb9491c383c0cdf20dd..2ceb7c49b48aa098385dd4ff560c2ac4fc8c855b 100644
--- a/sky/engine/core/frame/FrameView.h
+++ b/sky/engine/core/frame/FrameView.h
@@ -219,10 +219,6 @@ public:
IntPoint contentsToWindow(const IntPoint& contentsPoint) const { return contentsToWindow(contentsPoint); }
IntRect windowToContents(const IntRect& windowRect) const { return convertFromContainingWindow(windowRect); }
IntRect contentsToWindow(const IntRect& contentsRect) const { return contentsToWindow(contentsRect); }
- IntSize scrollOffset() const { return IntSize(); }
- IntPoint minimumScrollPosition() const { return IntPoint(); }
- IntPoint maximumScrollPosition() const { return IntPoint(); }
- IntPoint scrollPosition() const { return IntPoint(); }
bool scheduleAnimation();
IntRect visibleContentRect(IncludeScrollbarsInRect = ExcludeScrollbars) const { return IntRect(IntPoint(), expandedIntSize(frameRect().size())); }
IntSize unscaledVisibleContentSize(IncludeScrollbarsInRect = ExcludeScrollbars) const { return frameRect().size(); }
@@ -271,9 +267,6 @@ private:
bool wasViewportResized();
void sendResizeEventIfNeeded();
- void scrollPositionChanged();
- void didScrollTimerFired(Timer<FrameView>*);
-
void updateCompositedSelectionBoundsIfNeeded();
void setLayoutSizeInternal(const IntSize&);
@@ -341,8 +334,6 @@ private:
IntSize m_layoutSize;
bool m_layoutSizeFixedToFrameSize;
- Timer<FrameView> m_didScrollTimer;
-
Vector<IntRect> m_tickmarks;
};
« no previous file with comments | « no previous file | sky/engine/core/frame/FrameView.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698