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

Side by Side Diff: Source/core/frame/PinchViewport.h

Issue 601633003: Revert of Revert of Revert of 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/platform/scroll/ScrollView.h » ('j') | no next file with comments »
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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 } 73 }
74 GraphicsLayer* containerLayer() 74 GraphicsLayer* containerLayer()
75 { 75 {
76 return m_innerViewportContainerLayer.get(); 76 return m_innerViewportContainerLayer.get();
77 } 77 }
78 78
79 // Sets the location of the inner viewport relative to the outer viewport. T he 79 // Sets the location of the inner viewport relative to the outer viewport. T he
80 // coordinates are in partial CSS pixels. 80 // coordinates are in partial CSS pixels.
81 void setLocation(const FloatPoint&); 81 void setLocation(const FloatPoint&);
82 void move(const FloatPoint&); 82 void move(const FloatPoint&);
83 FloatPoint location() const { return m_offset; } // used in unit tests
84 83
85 // Sets the size of the inner viewport when unscaled in CSS pixels. 84 // Sets the size of the inner viewport when unscaled in CSS pixels.
86 // This will be clamped to the size of the outer viewport (the main frame). 85 // This will be clamped to the size of the outer viewport (the main frame).
87 void setSize(const IntSize&); 86 void setSize(const IntSize&);
88 IntSize size() const { return m_size; } 87 IntSize size() const { return m_size; }
89 88
90 // Resets the viewport to initial state. 89 // Resets the viewport to initial state.
91 void reset(); 90 void reset();
92 91
93 // Let the viewport know that the main frame changed size (either through sc reen 92 // Let the viewport know that the main frame changed size (either through sc reen
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 156
158 // Offset of the pinch viewport from the main frame's origin, in CSS pixels. 157 // Offset of the pinch viewport from the main frame's origin, in CSS pixels.
159 FloatPoint m_offset; 158 FloatPoint m_offset;
160 float m_scale; 159 float m_scale;
161 IntSize m_size; 160 IntSize m_size;
162 }; 161 };
163 162
164 } // namespace blink 163 } // namespace blink
165 164
166 #endif // PinchViewport_h 165 #endif // PinchViewport_h
OLDNEW
« no previous file with comments | « no previous file | Source/platform/scroll/ScrollView.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698