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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « no previous file | Source/web/ViewportAnchor.cpp » ('j') | Source/web/ViewportAnchor.cpp » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 // and an anchor point (in view coordinates, e.g., (0, 0) == viewport origin, 49 // and an anchor point (in view coordinates, e.g., (0, 0) == viewport origin,
50 // (0.5, 0) == viewport top center). The anchor point tracks the underlying DOM 50 // (0.5, 0) == viewport top center). The anchor point tracks the underlying DOM
51 // node; as the node moves or the view is resized, the viewport anchor maintains 51 // node; as the node moves or the view is resized, the viewport anchor maintains
52 // its orientation relative to the node, and the viewport origin maintains its 52 // its orientation relative to the node, and the viewport origin maintains its
53 // orientation relative to the anchor. 53 // orientation relative to the anchor.
54 class ViewportAnchor { 54 class ViewportAnchor {
55 STACK_ALLOCATED(); 55 STACK_ALLOCATED();
56 public: 56 public:
57 explicit ViewportAnchor(EventHandler*); 57 explicit ViewportAnchor(EventHandler*);
58 58
59 void setAnchor(const IntRect& viewRect, const FloatSize& anchorInViewCoords) ; 59 void setAnchor(const IntRect& innerViewRect, const IntRect& outerViewRect, c onst FloatSize& anchorInViewCoords);
60 60
61 IntPoint computeOrigin(const IntSize& currentViewSize) const; 61 IntPoint computeInnerViewportOrigin(const IntSize& innerSize) const;
62
63 IntPoint computeOuterViewportOrigin(const IntPoint& innerOrigin, const IntSi ze& 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.
62 64
63 private: 65 private:
64 RawPtrWillBeMember<EventHandler> m_eventHandler; 66 RawPtrWillBeMember<EventHandler> m_eventHandler;
65 67
66 IntRect m_viewRect; 68 IntRect m_viewRect;
67 69
68 RefPtrWillBeMember<Node> m_anchorNode; 70 RefPtrWillBeMember<Node> m_anchorNode;
69 LayoutRect m_anchorNodeBounds; 71 LayoutRect m_anchorNodeBounds;
70 72
71 FloatSize m_anchorInViewCoords; 73 FloatSize m_anchorInViewCoords;
72 FloatSize m_anchorInNodeCoords; 74 FloatSize m_anchorInNodeCoords;
75 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
73 }; 76 };
74 77
75 } // namespace blink 78 } // namespace blink
76 79
77 #endif 80 #endif
OLDNEW
« 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