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

Unified Diff: Source/web/ViewportAnchor.h

Issue 556703005: Initial draft - modify ViewportAnchor to know about both inner and outer viewports. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 3 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/web/ViewportAnchor.cpp » ('j') | Source/web/ViewportAnchor.cpp » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/ViewportAnchor.h
diff --git a/Source/web/ViewportAnchor.h b/Source/web/ViewportAnchor.h
index 8bd0a7b92b1ef0c77917e4b37fc754c2e69e768d..2f912e396f374711baaa563dfc8e18036c50e96d 100644
--- a/Source/web/ViewportAnchor.h
+++ b/Source/web/ViewportAnchor.h
@@ -56,9 +56,11 @@ class ViewportAnchor {
public:
explicit ViewportAnchor(EventHandler*);
- void setAnchor(const IntRect& viewRect, const FloatSize& anchorInViewCoords);
+ void setAnchor(const IntRect& innerViewRect, const IntRect& outerViewRect, const FloatSize& anchorInViewCoords);
- IntPoint computeOrigin(const IntSize& currentViewSize) const;
+ IntPoint computeInnerViewportOrigin(const IntSize& innerSize) const;
+
+ IntPoint computeOuterViewportOrigin(const IntPoint& innerOrigin, const IntSize& outerSize) const;
aelias_OOO_until_Jul13 2014/09/10 01:46:24 How about merging these two functions into: void
timav 2014/09/10 18:22:40 Will do.
private:
RawPtrWillBeMember<EventHandler> m_eventHandler;
@@ -70,6 +72,7 @@ private:
FloatSize m_anchorInViewCoords;
FloatSize m_anchorInNodeCoords;
+ FloatSize m_outerInInnerCoords;
aelias_OOO_until_Jul13 2014/09/10 01:46:24 Please rename this to m_normalizedPinchViewportOff
timav 2014/09/10 18:22:40 Yes. The sign was positive in the beginning, but I
};
} // namespace blink
« no previous file with comments | « no previous file | Source/web/ViewportAnchor.cpp » ('j') | Source/web/ViewportAnchor.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698