| 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 "core/page/Page.h" | 21 #include "core/page/Page.h" |
| 22 | 22 |
| 23 #include "BackForwardController.h" | |
| 24 #include "ClientRectList.h" | 23 #include "ClientRectList.h" |
| 25 #include "DocumentMarkerController.h" | 24 #include "DocumentMarkerController.h" |
| 26 #include "DocumentStyleSheetCollection.h" | 25 #include "DocumentStyleSheetCollection.h" |
| 27 #include "Event.h" | 26 #include "Event.h" |
| 28 #include "EventNames.h" | 27 #include "EventNames.h" |
| 29 #include "ExceptionCode.h" | 28 #include "ExceptionCode.h" |
| 30 #include "ExceptionCodePlaceholder.h" | 29 #include "ExceptionCodePlaceholder.h" |
| 31 #include "HTMLElement.h" | 30 #include "HTMLElement.h" |
| 32 #include "HistoryItem.h" | |
| 33 #include "InspectorController.h" | 31 #include "InspectorController.h" |
| 34 #include "InspectorInstrumentation.h" | 32 #include "InspectorInstrumentation.h" |
| 35 #include "PluginData.h" | 33 #include "PluginData.h" |
| 36 #include "PluginViewBase.h" | 34 #include "PluginViewBase.h" |
| 37 #include "ScriptController.h" | 35 #include "ScriptController.h" |
| 38 #include "VisitedLinkState.h" | 36 #include "VisitedLinkState.h" |
| 39 #include "VoidCallback.h" | 37 #include "VoidCallback.h" |
| 40 #include "WebCoreMemoryInstrumentation.h" | 38 #include "WebCoreMemoryInstrumentation.h" |
| 41 #include "core/editing/Editor.h" | 39 #include "core/editing/Editor.h" |
| 42 #include "core/editing/FrameSelection.h" | 40 #include "core/editing/FrameSelection.h" |
| 41 #include "core/history/BackForwardController.h" |
| 42 #include "core/history/HistoryItem.h" |
| 43 #include "core/loader/FrameLoader.h" | 43 #include "core/loader/FrameLoader.h" |
| 44 #include "core/loader/FrameLoaderClient.h" | 44 #include "core/loader/FrameLoaderClient.h" |
| 45 #include "core/loader/ProgressTracker.h" | 45 #include "core/loader/ProgressTracker.h" |
| 46 #include "core/loader/TextResourceDecoder.h" | 46 #include "core/loader/TextResourceDecoder.h" |
| 47 #include "core/page/AlternativeTextClient.h" | 47 #include "core/page/AlternativeTextClient.h" |
| 48 #include "core/page/Chrome.h" | 48 #include "core/page/Chrome.h" |
| 49 #include "core/page/ChromeClient.h" | 49 #include "core/page/ChromeClient.h" |
| 50 #include "core/page/ContextMenuClient.h" | 50 #include "core/page/ContextMenuClient.h" |
| 51 #include "core/page/ContextMenuController.h" | 51 #include "core/page/ContextMenuController.h" |
| 52 #include "core/page/DOMTimer.h" | 52 #include "core/page/DOMTimer.h" |
| (...skipping 1129 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 |