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 "ClientRectList.h" | |
24 #include "DocumentMarkerController.h" | |
25 #include "DocumentStyleSheetCollection.h" | |
26 #include "Event.h" | |
27 #include "EventNames.h" | |
28 #include "ExceptionCode.h" | |
29 #include "ExceptionCodePlaceholder.h" | |
30 #include "HTMLElement.h" | 23 #include "HTMLElement.h" |
31 #include "InspectorController.h" | 24 #include "InspectorController.h" |
32 #include "InspectorInstrumentation.h" | 25 #include "InspectorInstrumentation.h" |
33 #include "PluginData.h" | 26 #include "PluginData.h" |
34 #include "PluginViewBase.h" | 27 #include "PluginViewBase.h" |
35 #include "ScriptController.h" | 28 #include "ScriptController.h" |
36 #include "VisitedLinkState.h" | |
37 #include "VoidCallback.h" | 29 #include "VoidCallback.h" |
38 #include "WebCoreMemoryInstrumentation.h" | 30 #include "core/dom/ClientRectList.h" |
| 31 #include "core/dom/DocumentMarkerController.h" |
| 32 #include "core/dom/DocumentStyleSheetCollection.h" |
| 33 #include "core/dom/Event.h" |
| 34 #include "core/dom/EventNames.h" |
| 35 #include "core/dom/ExceptionCode.h" |
| 36 #include "core/dom/ExceptionCodePlaceholder.h" |
| 37 #include "core/dom/VisitedLinkState.h" |
| 38 #include "core/dom/WebCoreMemoryInstrumentation.h" |
39 #include "core/editing/Editor.h" | 39 #include "core/editing/Editor.h" |
40 #include "core/editing/FrameSelection.h" | 40 #include "core/editing/FrameSelection.h" |
41 #include "core/history/BackForwardController.h" | 41 #include "core/history/BackForwardController.h" |
42 #include "core/history/HistoryItem.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" |
(...skipping 1133 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 |