OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2013 Apple Inc. All rights reserv
ed. | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2013 Apple Inc. All rights reserv
ed. |
3 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) | 3 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) |
4 * | 4 * |
5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
9 * | 9 * |
10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
150 void setValidationMessageClient(ValidationMessageClient* client) { m_validat
ionMessageClient = client; } | 150 void setValidationMessageClient(ValidationMessageClient* client) { m_validat
ionMessageClient = client; } |
151 | 151 |
152 bool autoscrollInProgress() const; | 152 bool autoscrollInProgress() const; |
153 bool autoscrollInProgress(const RenderBox*) const; | 153 bool autoscrollInProgress(const RenderBox*) const; |
154 bool panScrollInProgress() const; | 154 bool panScrollInProgress() const; |
155 void startAutoscrollForSelection(RenderObject*); | 155 void startAutoscrollForSelection(RenderObject*); |
156 void stopAutoscrollIfNeeded(RenderObject*); | 156 void stopAutoscrollIfNeeded(RenderObject*); |
157 void stopAutoscrollTimer(); | 157 void stopAutoscrollTimer(); |
158 void updateAutoscrollRenderer(); | 158 void updateAutoscrollRenderer(); |
159 void updateDragAndDrop(Node* targetNode, const IntPoint& eventPosition, doub
le eventTime); | 159 void updateDragAndDrop(Node* targetNode, const IntPoint& eventPosition, doub
le eventTime); |
160 #if OS(WINDOWS) | 160 #if OS(WIN) |
161 void handleMouseReleaseForPanScrolling(Frame*, const PlatformMouseEvent&); | 161 void handleMouseReleaseForPanScrolling(Frame*, const PlatformMouseEvent&); |
162 void startPanScrolling(RenderBox*, const IntPoint&); | 162 void startPanScrolling(RenderBox*, const IntPoint&); |
163 #endif | 163 #endif |
164 | 164 |
165 ScrollingCoordinator* scrollingCoordinator(); | 165 ScrollingCoordinator* scrollingCoordinator(); |
166 | 166 |
167 String mainThreadScrollingReasonsAsText(); | 167 String mainThreadScrollingReasonsAsText(); |
168 PassRefPtr<ClientRectList> nonFastScrollableRects(const Frame*); | 168 PassRefPtr<ClientRectList> nonFastScrollableRects(const Frame*); |
169 | 169 |
170 Settings& settings() const { return *m_settings; } | 170 Settings& settings() const { return *m_settings; } |
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
320 #endif | 320 #endif |
321 | 321 |
322 const OwnPtr<PageConsole> m_console; | 322 const OwnPtr<PageConsole> m_console; |
323 | 323 |
324 HashSet<MultisamplingChangedObserver*> m_multisamplingChangedObservers; | 324 HashSet<MultisamplingChangedObserver*> m_multisamplingChangedObservers; |
325 }; | 325 }; |
326 | 326 |
327 } // namespace WebCore | 327 } // namespace WebCore |
328 | 328 |
329 #endif // Page_h | 329 #endif // Page_h |
OLD | NEW |