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.cpp

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/Page.h ('k') | Source/core/page/Settings.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, 2011, 2012, 2013 Apple Inc. All R ights Reserved. 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All R ights Reserved.
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 * This library is distributed in the hope that it will be useful, 9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 void Page::updateAutoscrollRenderer() 199 void Page::updateAutoscrollRenderer()
200 { 200 {
201 m_autoscrollController->updateAutoscrollRenderer(); 201 m_autoscrollController->updateAutoscrollRenderer();
202 } 202 }
203 203
204 void Page::updateDragAndDrop(Node* dropTargetNode, const IntPoint& eventPosition , double eventTime) 204 void Page::updateDragAndDrop(Node* dropTargetNode, const IntPoint& eventPosition , double eventTime)
205 { 205 {
206 m_autoscrollController->updateDragAndDrop(dropTargetNode, eventPosition, eve ntTime); 206 m_autoscrollController->updateDragAndDrop(dropTargetNode, eventPosition, eve ntTime);
207 } 207 }
208 208
209 #if OS(WINDOWS) 209 #if OS(WIN)
210 void Page::handleMouseReleaseForPanScrolling(Frame* frame, const PlatformMouseEv ent& point) 210 void Page::handleMouseReleaseForPanScrolling(Frame* frame, const PlatformMouseEv ent& point)
211 { 211 {
212 m_autoscrollController->handleMouseReleaseForPanScrolling(frame, point); 212 m_autoscrollController->handleMouseReleaseForPanScrolling(frame, point);
213 } 213 }
214 214
215 void Page::startPanScrolling(RenderBox* renderer, const IntPoint& point) 215 void Page::startPanScrolling(RenderBox* renderer, const IntPoint& point)
216 { 216 {
217 m_autoscrollController->startPanScrolling(renderer, point); 217 m_autoscrollController->startPanScrolling(renderer, point);
218 } 218 }
219 #endif 219 #endif
(...skipping 528 matching lines...) Expand 10 before | Expand all | Expand 10 after
748 , dragClient(0) 748 , dragClient(0)
749 , inspectorClient(0) 749 , inspectorClient(0)
750 { 750 {
751 } 751 }
752 752
753 Page::PageClients::~PageClients() 753 Page::PageClients::~PageClients()
754 { 754 {
755 } 755 }
756 756
757 } // namespace WebCore 757 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/page/Page.h ('k') | Source/core/page/Settings.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698