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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 #include "PluginData.h" | 60 #include "PluginData.h" |
61 #include "PluginViewBase.h" | 61 #include "PluginViewBase.h" |
62 #include "PointerLockController.h" | 62 #include "PointerLockController.h" |
63 #include "ProgressTracker.h" | 63 #include "ProgressTracker.h" |
64 #include "RenderArena.h" | 64 #include "RenderArena.h" |
65 #include "RenderTheme.h" | 65 #include "RenderTheme.h" |
66 #include "RenderView.h" | 66 #include "RenderView.h" |
67 #include "RenderWidget.h" | 67 #include "RenderWidget.h" |
68 #include "RuntimeEnabledFeatures.h" | 68 #include "RuntimeEnabledFeatures.h" |
69 #include "SchemeRegistry.h" | 69 #include "SchemeRegistry.h" |
| 70 #include "ScriptController.h" |
70 #include "ScrollingCoordinator.h" | 71 #include "ScrollingCoordinator.h" |
71 #include "Settings.h" | 72 #include "Settings.h" |
72 #include "SharedBuffer.h" | 73 #include "SharedBuffer.h" |
73 #include "StorageArea.h" | 74 #include "StorageArea.h" |
74 #include "StorageNamespace.h" | 75 #include "StorageNamespace.h" |
75 #include "TextResourceDecoder.h" | 76 #include "TextResourceDecoder.h" |
76 #include "VisitedLinkState.h" | 77 #include "VisitedLinkState.h" |
77 #include "VoidCallback.h" | 78 #include "VoidCallback.h" |
78 #include "WebCoreMemoryInstrumentation.h" | 79 #include "WebCoreMemoryInstrumentation.h" |
79 #include "Widget.h" | 80 #include "Widget.h" |
(...skipping 1170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1250 , plugInClient(0) | 1251 , plugInClient(0) |
1251 , validationMessageClient(0) | 1252 , validationMessageClient(0) |
1252 { | 1253 { |
1253 } | 1254 } |
1254 | 1255 |
1255 Page::PageClients::~PageClients() | 1256 Page::PageClients::~PageClients() |
1256 { | 1257 { |
1257 } | 1258 } |
1258 | 1259 |
1259 } // namespace WebCore | 1260 } // namespace WebCore |
OLD | NEW |