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

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

Issue 688433003: Remove viewportConstrained plumbing. (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 81b289ccf6eadec9a8c866ecd800545c569057d4..203e7bcf6723afca32a68c528c089e35625470e3 100644
--- a/sky/engine/core/frame/FrameView.h
+++ b/sky/engine/core/frame/FrameView.h
@@ -138,10 +138,6 @@ public:
IntSize inputEventsOffsetForEmulation() const;
void setInputEventsTransformForEmulation(const IntSize&, float);
- // This is different than visibleContentRect() in that it ignores negative (or overly positive)
- // offsets from rubber-banding, and it takes zooming into account.
- void viewportConstrainedVisibleContentSizeChanged(bool widthChanged, bool heightChanged);
-
AtomicString mediaType() const;
void setMediaType(const AtomicString&);
@@ -149,13 +145,6 @@ public:
void removeSlowRepaintObject();
bool hasSlowRepaintObjects() const { return m_slowRepaintObjectCount; }
- // Fixed-position objects.
- typedef HashSet<RenderObject*> ViewportConstrainedObjectSet;
- void addViewportConstrainedObject(RenderObject*);
- void removeViewportConstrainedObject(RenderObject*);
- const ViewportConstrainedObjectSet* viewportConstrainedObjects() const { return m_viewportConstrainedObjects.get(); }
- bool hasViewportConstrainedObjects() const { return m_viewportConstrainedObjects && m_viewportConstrainedObjects->size() > 0; }
-
void restoreScrollbar();
void postLayoutTimerFired(Timer<FrameView>*);
@@ -342,8 +331,6 @@ private:
void scrollPositionChanged();
void didScrollTimerFired(Timer<FrameView>*);
- void updateLayersAndCompositingAfterScrollIfNeeded();
- void updateFixedElementPaintInvalidationRectsAfterScroll();
void updateCompositedSelectionBoundsIfNeeded();
void setLayoutSizeInternal(const IntSize&);
@@ -409,7 +396,6 @@ private:
OwnPtr<ScrollableAreaSet> m_scrollableAreas;
OwnPtr<ResizerAreaSet> m_resizerAreas;
- OwnPtr<ViewportConstrainedObjectSet> m_viewportConstrainedObjects;
bool m_hasSoftwareFilters;
« 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