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

Side by Side Diff: Source/core/page/Page.h

Issue 23672027: Rename OS(WINDOWS) to OS(WIN) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 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 | « Source/core/page/EventHandler.cpp ('k') | Source/core/page/Page.cpp » ('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) 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
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
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
OLDNEW
« no previous file with comments | « Source/core/page/EventHandler.cpp ('k') | Source/core/page/Page.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698