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 |
(...skipping 21 matching lines...) Expand all Loading... |
32 #include "DOMWindow.h" | 32 #include "DOMWindow.h" |
33 #include "DocumentMarkerController.h" | 33 #include "DocumentMarkerController.h" |
34 #include "DocumentStyleSheetCollection.h" | 34 #include "DocumentStyleSheetCollection.h" |
35 #include "DragController.h" | 35 #include "DragController.h" |
36 #include "Editor.h" | 36 #include "Editor.h" |
37 #include "EditorClient.h" | 37 #include "EditorClient.h" |
38 #include "Event.h" | 38 #include "Event.h" |
39 #include "EventNames.h" | 39 #include "EventNames.h" |
40 #include "ExceptionCode.h" | 40 #include "ExceptionCode.h" |
41 #include "ExceptionCodePlaceholder.h" | 41 #include "ExceptionCodePlaceholder.h" |
42 #include "FileSystem.h" | |
43 #include "FocusController.h" | 42 #include "FocusController.h" |
44 #include "Frame.h" | 43 #include "Frame.h" |
45 #include "FrameLoader.h" | 44 #include "FrameLoader.h" |
46 #include "FrameLoaderClient.h" | 45 #include "FrameLoaderClient.h" |
47 #include "FrameSelection.h" | 46 #include "FrameSelection.h" |
48 #include "FrameTree.h" | 47 #include "FrameTree.h" |
49 #include "FrameView.h" | 48 #include "FrameView.h" |
50 #include "HTMLElement.h" | 49 #include "HTMLElement.h" |
51 #include "HistoryItem.h" | 50 #include "HistoryItem.h" |
52 #include "InspectorController.h" | 51 #include "InspectorController.h" |
53 #include "InspectorInstrumentation.h" | 52 #include "InspectorInstrumentation.h" |
54 #include "Logging.h" | |
55 #include "MediaCanStartListener.h" | 53 #include "MediaCanStartListener.h" |
56 #include "Navigator.h" | 54 #include "Navigator.h" |
57 #include "PageConsole.h" | 55 #include "PageConsole.h" |
58 #include "PageGroup.h" | 56 #include "PageGroup.h" |
59 #include "PlugInClient.h" | 57 #include "PlugInClient.h" |
60 #include "PluginData.h" | 58 #include "PluginData.h" |
61 #include "PluginViewBase.h" | 59 #include "PluginViewBase.h" |
62 #include "PointerLockController.h" | 60 #include "PointerLockController.h" |
63 #include "ProgressTracker.h" | 61 #include "ProgressTracker.h" |
64 #include "RenderArena.h" | 62 #include "RenderArena.h" |
65 #include "RenderTheme.h" | 63 #include "RenderTheme.h" |
66 #include "RenderView.h" | 64 #include "RenderView.h" |
67 #include "RenderWidget.h" | 65 #include "RenderWidget.h" |
68 #include "RuntimeEnabledFeatures.h" | 66 #include "RuntimeEnabledFeatures.h" |
69 #include "SchemeRegistry.h" | |
70 #include "ScriptController.h" | 67 #include "ScriptController.h" |
71 #include "ScrollingCoordinator.h" | 68 #include "ScrollingCoordinator.h" |
72 #include "Settings.h" | 69 #include "Settings.h" |
73 #include "SharedBuffer.h" | |
74 #include "TextResourceDecoder.h" | 70 #include "TextResourceDecoder.h" |
75 #include "VisitedLinkState.h" | 71 #include "VisitedLinkState.h" |
76 #include "VoidCallback.h" | 72 #include "VoidCallback.h" |
77 #include "WebCoreMemoryInstrumentation.h" | 73 #include "WebCoreMemoryInstrumentation.h" |
78 #include "Widget.h" | 74 #include "core/platform/FileSystem.h" |
| 75 #include "core/platform/Logging.h" |
| 76 #include "core/platform/SchemeRegistry.h" |
| 77 #include "core/platform/SharedBuffer.h" |
| 78 #include "core/platform/Widget.h" |
79 #include "core/platform/network/NetworkStateNotifier.h" | 79 #include "core/platform/network/NetworkStateNotifier.h" |
80 #include "core/storage/StorageArea.h" | 80 #include "core/storage/StorageArea.h" |
81 #include "core/storage/StorageNamespace.h" | 81 #include "core/storage/StorageNamespace.h" |
82 #include <wtf/HashMap.h> | 82 #include <wtf/HashMap.h> |
83 #include <wtf/RefCountedLeakCounter.h> | 83 #include <wtf/RefCountedLeakCounter.h> |
84 #include <wtf/StdLibExtras.h> | 84 #include <wtf/StdLibExtras.h> |
85 #include <wtf/text/Base64.h> | 85 #include <wtf/text/Base64.h> |
86 #include <wtf/text/StringHash.h> | 86 #include <wtf/text/StringHash.h> |
87 | 87 |
88 namespace WebCore { | 88 namespace WebCore { |
(...skipping 1093 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 |