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" |
24 #include "BackForwardController.h" | 25 #include "BackForwardController.h" |
25 #include "BackForwardList.h" | 26 #include "BackForwardList.h" |
26 #include "Chrome.h" | 27 #include "Chrome.h" |
27 #include "ChromeClient.h" | 28 #include "ChromeClient.h" |
28 #include "ClientRectList.h" | 29 #include "ClientRectList.h" |
29 #include "ContextMenuClient.h" | 30 #include "ContextMenuClient.h" |
30 #include "ContextMenuController.h" | 31 #include "ContextMenuController.h" |
31 #include "DOMWindow.h" | 32 #include "DOMWindow.h" |
32 #include "DocumentMarkerController.h" | 33 #include "DocumentMarkerController.h" |
33 #include "DocumentStyleSheetCollection.h" | 34 #include "DocumentStyleSheetCollection.h" |
34 #include "DragController.h" | 35 #include "DragController.h" |
| 36 #include "Editor.h" |
35 #include "EditorClient.h" | 37 #include "EditorClient.h" |
36 #include "Event.h" | 38 #include "Event.h" |
37 #include "EventNames.h" | 39 #include "EventNames.h" |
38 #include "ExceptionCode.h" | 40 #include "ExceptionCode.h" |
39 #include "ExceptionCodePlaceholder.h" | 41 #include "ExceptionCodePlaceholder.h" |
40 #include "FileSystem.h" | 42 #include "FileSystem.h" |
41 #include "FocusController.h" | 43 #include "FocusController.h" |
42 #include "Frame.h" | 44 #include "Frame.h" |
43 #include "FrameLoader.h" | 45 #include "FrameLoader.h" |
44 #include "FrameLoaderClient.h" | 46 #include "FrameLoaderClient.h" |
(...skipping 1205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1250 , plugInClient(0) | 1252 , plugInClient(0) |
1251 , validationMessageClient(0) | 1253 , validationMessageClient(0) |
1252 { | 1254 { |
1253 } | 1255 } |
1254 | 1256 |
1255 Page::PageClients::~PageClients() | 1257 Page::PageClients::~PageClients() |
1256 { | 1258 { |
1257 } | 1259 } |
1258 | 1260 |
1259 } // namespace WebCore | 1261 } // namespace WebCore |
OLD | NEW |