| 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 "HTMLElement.h" | 23 #include "HTMLElement.h" |
| 24 #include "PluginData.h" | 24 #include "PluginData.h" |
| 25 #include "PluginViewBase.h" | 25 #include "PluginViewBase.h" |
| 26 #include "ScriptController.h" | |
| 27 #include "VoidCallback.h" | 26 #include "VoidCallback.h" |
| 27 #include "bindings/v8/ScriptController.h" |
| 28 #include "core/dom/ClientRectList.h" | 28 #include "core/dom/ClientRectList.h" |
| 29 #include "core/dom/DocumentMarkerController.h" | 29 #include "core/dom/DocumentMarkerController.h" |
| 30 #include "core/dom/DocumentStyleSheetCollection.h" | 30 #include "core/dom/DocumentStyleSheetCollection.h" |
| 31 #include "core/dom/Event.h" | 31 #include "core/dom/Event.h" |
| 32 #include "core/dom/EventNames.h" | 32 #include "core/dom/EventNames.h" |
| 33 #include "core/dom/ExceptionCode.h" | 33 #include "core/dom/ExceptionCode.h" |
| 34 #include "core/dom/ExceptionCodePlaceholder.h" | 34 #include "core/dom/ExceptionCodePlaceholder.h" |
| 35 #include "core/dom/VisitedLinkState.h" | 35 #include "core/dom/VisitedLinkState.h" |
| 36 #include "core/dom/WebCoreMemoryInstrumentation.h" | 36 #include "core/dom/WebCoreMemoryInstrumentation.h" |
| 37 #include "core/editing/Editor.h" | 37 #include "core/editing/Editor.h" |
| (...skipping 1143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1181 , inspectorClient(0) | 1181 , inspectorClient(0) |
| 1182 , plugInClient(0) | 1182 , plugInClient(0) |
| 1183 { | 1183 { |
| 1184 } | 1184 } |
| 1185 | 1185 |
| 1186 Page::PageClients::~PageClients() | 1186 Page::PageClients::~PageClients() |
| 1187 { | 1187 { |
| 1188 } | 1188 } |
| 1189 | 1189 |
| 1190 } // namespace WebCore | 1190 } // namespace WebCore |
| OLD | NEW |