| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 #include "FrameSelection.h" | 47 #include "FrameSelection.h" |
| 48 #include "FrameTree.h" | 48 #include "FrameTree.h" |
| 49 #include "FrameView.h" | 49 #include "FrameView.h" |
| 50 #include "HTMLElement.h" | 50 #include "HTMLElement.h" |
| 51 #include "HistoryItem.h" | 51 #include "HistoryItem.h" |
| 52 #include "InspectorController.h" | 52 #include "InspectorController.h" |
| 53 #include "InspectorInstrumentation.h" | 53 #include "InspectorInstrumentation.h" |
| 54 #include "Logging.h" | 54 #include "Logging.h" |
| 55 #include "MediaCanStartListener.h" | 55 #include "MediaCanStartListener.h" |
| 56 #include "Navigator.h" | 56 #include "Navigator.h" |
| 57 #include "NetworkStateNotifier.h" | |
| 58 #include "PageConsole.h" | 57 #include "PageConsole.h" |
| 59 #include "PageGroup.h" | 58 #include "PageGroup.h" |
| 60 #include "PlugInClient.h" | 59 #include "PlugInClient.h" |
| 61 #include "PluginData.h" | 60 #include "PluginData.h" |
| 62 #include "PluginViewBase.h" | 61 #include "PluginViewBase.h" |
| 63 #include "PointerLockController.h" | 62 #include "PointerLockController.h" |
| 64 #include "ProgressTracker.h" | 63 #include "ProgressTracker.h" |
| 65 #include "RenderArena.h" | 64 #include "RenderArena.h" |
| 66 #include "RenderTheme.h" | 65 #include "RenderTheme.h" |
| 67 #include "RenderView.h" | 66 #include "RenderView.h" |
| 68 #include "RenderWidget.h" | 67 #include "RenderWidget.h" |
| 69 #include "RuntimeEnabledFeatures.h" | 68 #include "RuntimeEnabledFeatures.h" |
| 70 #include "SchemeRegistry.h" | 69 #include "SchemeRegistry.h" |
| 71 #include "ScriptController.h" | 70 #include "ScriptController.h" |
| 72 #include "ScrollingCoordinator.h" | 71 #include "ScrollingCoordinator.h" |
| 73 #include "Settings.h" | 72 #include "Settings.h" |
| 74 #include "SharedBuffer.h" | 73 #include "SharedBuffer.h" |
| 75 #include "TextResourceDecoder.h" | 74 #include "TextResourceDecoder.h" |
| 76 #include "VisitedLinkState.h" | 75 #include "VisitedLinkState.h" |
| 77 #include "VoidCallback.h" | 76 #include "VoidCallback.h" |
| 78 #include "WebCoreMemoryInstrumentation.h" | 77 #include "WebCoreMemoryInstrumentation.h" |
| 79 #include "Widget.h" | 78 #include "Widget.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 { |
| 89 | 89 |
| (...skipping 1092 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 |