OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 14 matching lines...) Expand all Loading... |
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
29 */ | 29 */ |
30 | 30 |
31 #include "config.h" | 31 #include "config.h" |
32 #include "WebKit.h" | 32 #include "WebKit.h" |
33 | 33 |
34 #include "CustomElementRegistry.h" | 34 #include "CustomElementRegistry.h" |
35 #include "EventTracer.h" | |
36 #include "Frame.h" | 35 #include "Frame.h" |
37 #include "IDBFactoryBackendProxy.h" | 36 #include "IDBFactoryBackendProxy.h" |
38 #include "LayoutTestSupport.h" | |
39 #include "Logging.h" | |
40 #include "MutationObserver.h" | 37 #include "MutationObserver.h" |
41 #include "Page.h" | 38 #include "Page.h" |
42 #include "RuntimeEnabledFeatures.h" | 39 #include "RuntimeEnabledFeatures.h" |
43 #include "Settings.h" | 40 #include "Settings.h" |
44 #include "V8Binding.h" | 41 #include "V8Binding.h" |
45 #include "V8RecursionScope.h" | 42 #include "V8RecursionScope.h" |
46 #include "WebMediaPlayerClientImpl.h" | 43 #include "WebMediaPlayerClientImpl.h" |
47 #include "WebSocket.h" | 44 #include "WebSocket.h" |
48 #include "WebWorkerClientImpl.h" | 45 #include "WebWorkerClientImpl.h" |
49 #include "WorkerContextProxyChromium.h" | 46 #include "WorkerContextProxyChromium.h" |
| 47 #include "core/platform/EventTracer.h" |
| 48 #include "core/platform/LayoutTestSupport.h" |
| 49 #include "core/platform/Logging.h" |
50 #include "core/platform/graphics/chromium/ImageDecodingStore.h" | 50 #include "core/platform/graphics/chromium/ImageDecodingStore.h" |
51 #include "core/platform/graphics/chromium/MediaPlayerPrivateChromium.h" | 51 #include "core/platform/graphics/chromium/MediaPlayerPrivateChromium.h" |
52 #include "core/platform/text/TextEncoding.h" | 52 #include "core/platform/text/TextEncoding.h" |
53 #include "v8.h" | 53 #include "v8.h" |
54 #include <public/Platform.h> | 54 #include <public/Platform.h> |
55 #include <public/WebPrerenderingSupport.h> | 55 #include <public/WebPrerenderingSupport.h> |
56 #include <public/WebThread.h> | 56 #include <public/WebThread.h> |
57 #include <wtf/Assertions.h> | 57 #include <wtf/Assertions.h> |
58 #include <wtf/MainThread.h> | 58 #include <wtf/MainThread.h> |
59 #include <wtf/text/AtomicString.h> | 59 #include <wtf/text/AtomicString.h> |
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
199 UNUSED_PARAM(name); | 199 UNUSED_PARAM(name); |
200 #endif // !LOG_DISABLED | 200 #endif // !LOG_DISABLED |
201 } | 201 } |
202 | 202 |
203 void resetPluginCache(bool reloadPages) | 203 void resetPluginCache(bool reloadPages) |
204 { | 204 { |
205 WebCore::Page::refreshPlugins(reloadPages); | 205 WebCore::Page::refreshPlugins(reloadPages); |
206 } | 206 } |
207 | 207 |
208 } // namespace WebKit | 208 } // namespace WebKit |
OLD | NEW |