| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |