| 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 |
| 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 12 * Library General Public License for more details. | 12 * Library General Public License for more details. |
| 13 * | 13 * |
| 14 * You should have received a copy of the GNU Library General Public License | 14 * You should have received a copy of the GNU Library General Public License |
| 15 * along with this library; see the file COPYING.LIB. If not, write to | 15 * along with this library; see the file COPYING.LIB. If not, write to |
| 16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 17 * Boston, MA 02110-1301, USA. | 17 * Boston, MA 02110-1301, USA. |
| 18 */ | 18 */ |
| 19 | 19 |
| 20 #include "config.h" | 20 #include "config.h" |
| 21 #include "Page.h" | 21 #include "Page.h" |
| 22 | 22 |
| 23 #include "AlternativeTextClient.h" | 23 #include "AlternativeTextClient.h" |
| 24 #include "AnimationController.h" | |
| 25 #include "BackForwardController.h" | 24 #include "BackForwardController.h" |
| 26 #include "Chrome.h" | 25 #include "Chrome.h" |
| 27 #include "ChromeClient.h" | 26 #include "ChromeClient.h" |
| 28 #include "ClientRectList.h" | 27 #include "ClientRectList.h" |
| 29 #include "ContextMenuClient.h" | 28 #include "ContextMenuClient.h" |
| 30 #include "ContextMenuController.h" | 29 #include "ContextMenuController.h" |
| 31 #include "DOMTimer.h" | 30 #include "DOMTimer.h" |
| 32 #include "DOMWindow.h" | 31 #include "DOMWindow.h" |
| 33 #include "DocumentMarkerController.h" | 32 #include "DocumentMarkerController.h" |
| 34 #include "DocumentStyleSheetCollection.h" | 33 #include "DocumentStyleSheetCollection.h" |
| (...skipping 14 matching lines...) Expand all Loading... |
| 49 #include "MediaCanStartListener.h" | 48 #include "MediaCanStartListener.h" |
| 50 #include "Navigator.h" | 49 #include "Navigator.h" |
| 51 #include "PageConsole.h" | 50 #include "PageConsole.h" |
| 52 #include "PageGroup.h" | 51 #include "PageGroup.h" |
| 53 #include "PlugInClient.h" | 52 #include "PlugInClient.h" |
| 54 #include "PluginData.h" | 53 #include "PluginData.h" |
| 55 #include "PluginViewBase.h" | 54 #include "PluginViewBase.h" |
| 56 #include "PointerLockController.h" | 55 #include "PointerLockController.h" |
| 57 #include "RuntimeEnabledFeatures.h" | 56 #include "RuntimeEnabledFeatures.h" |
| 58 #include "ScriptController.h" | 57 #include "ScriptController.h" |
| 59 #include "ScrollingCoordinator.h" | |
| 60 #include "Settings.h" | 58 #include "Settings.h" |
| 61 #include "VisitedLinkState.h" | 59 #include "VisitedLinkState.h" |
| 62 #include "VoidCallback.h" | 60 #include "VoidCallback.h" |
| 63 #include "WebCoreMemoryInstrumentation.h" | 61 #include "WebCoreMemoryInstrumentation.h" |
| 64 #include "core/editing/Editor.h" | 62 #include "core/editing/Editor.h" |
| 65 #include "core/editing/FrameSelection.h" | 63 #include "core/editing/FrameSelection.h" |
| 66 #include "core/loader/FrameLoader.h" | 64 #include "core/loader/FrameLoader.h" |
| 67 #include "core/loader/FrameLoaderClient.h" | 65 #include "core/loader/FrameLoaderClient.h" |
| 68 #include "core/loader/ProgressTracker.h" | 66 #include "core/loader/ProgressTracker.h" |
| 69 #include "core/loader/TextResourceDecoder.h" | 67 #include "core/loader/TextResourceDecoder.h" |
| 68 #include "core/page/animation/AnimationController.h" |
| 69 #include "core/page/scrolling/ScrollingCoordinator.h" |
| 70 #include "core/platform/FileSystem.h" | 70 #include "core/platform/FileSystem.h" |
| 71 #include "core/platform/Logging.h" | 71 #include "core/platform/Logging.h" |
| 72 #include "core/platform/SchemeRegistry.h" | 72 #include "core/platform/SchemeRegistry.h" |
| 73 #include "core/platform/SharedBuffer.h" | 73 #include "core/platform/SharedBuffer.h" |
| 74 #include "core/platform/Widget.h" | 74 #include "core/platform/Widget.h" |
| 75 #include "core/platform/network/NetworkStateNotifier.h" | 75 #include "core/platform/network/NetworkStateNotifier.h" |
| 76 #include "core/rendering/RenderArena.h" | 76 #include "core/rendering/RenderArena.h" |
| 77 #include "core/rendering/RenderTheme.h" | 77 #include "core/rendering/RenderTheme.h" |
| 78 #include "core/rendering/RenderView.h" | 78 #include "core/rendering/RenderView.h" |
| 79 #include "core/rendering/RenderWidget.h" | 79 #include "core/rendering/RenderWidget.h" |
| (...skipping 1102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1182 , inspectorClient(0) | 1182 , inspectorClient(0) |
| 1183 , plugInClient(0) | 1183 , plugInClient(0) |
| 1184 { | 1184 { |
| 1185 } | 1185 } |
| 1186 | 1186 |
| 1187 Page::PageClients::~PageClients() | 1187 Page::PageClients::~PageClients() |
| 1188 { | 1188 { |
| 1189 } | 1189 } |
| 1190 | 1190 |
| 1191 } // namespace WebCore | 1191 } // namespace WebCore |
| OLD | NEW |