OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009, 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2009, 2012 Google Inc. All rights reserved. |
3 * Copyright (C) 2011 Apple Inc. All rights reserved. | 3 * Copyright (C) 2011 Apple Inc. All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
7 * met: | 7 * met: |
8 * | 8 * |
9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 #include "modules/device_orientation/DeviceOrientationController.h" | 59 #include "modules/device_orientation/DeviceOrientationController.h" |
60 #include "modules/encryptedmedia/HTMLMediaElementEncryptedMedia.h" | 60 #include "modules/encryptedmedia/HTMLMediaElementEncryptedMedia.h" |
61 #include "modules/gamepad/NavigatorGamepad.h" | 61 #include "modules/gamepad/NavigatorGamepad.h" |
62 #include "modules/remoteplayback/HTMLMediaElementRemotePlayback.h" | 62 #include "modules/remoteplayback/HTMLMediaElementRemotePlayback.h" |
63 #include "modules/remoteplayback/RemotePlayback.h" | 63 #include "modules/remoteplayback/RemotePlayback.h" |
64 #include "modules/serviceworkers/NavigatorServiceWorker.h" | 64 #include "modules/serviceworkers/NavigatorServiceWorker.h" |
65 #include "modules/serviceworkers/ServiceWorkerLinkResource.h" | 65 #include "modules/serviceworkers/ServiceWorkerLinkResource.h" |
66 #include "modules/storage/DOMWindowStorageController.h" | 66 #include "modules/storage/DOMWindowStorageController.h" |
67 #include "modules/vr/NavigatorVR.h" | 67 #include "modules/vr/NavigatorVR.h" |
68 #include "platform/Histogram.h" | 68 #include "platform/Histogram.h" |
69 #include "platform/MIMETypeRegistry.h" | |
70 #include "platform/RuntimeEnabledFeatures.h" | 69 #include "platform/RuntimeEnabledFeatures.h" |
71 #include "platform/UserGestureIndicator.h" | 70 #include "platform/UserGestureIndicator.h" |
72 #include "platform/exported/WrappedResourceRequest.h" | 71 #include "platform/exported/WrappedResourceRequest.h" |
73 #include "platform/exported/WrappedResourceResponse.h" | 72 #include "platform/exported/WrappedResourceResponse.h" |
74 #include "platform/network/HTTPParsers.h" | 73 #include "platform/network/HTTPParsers.h" |
| 74 #include "platform/network/mime/MIMETypeRegistry.h" |
75 #include "platform/plugins/PluginData.h" | 75 #include "platform/plugins/PluginData.h" |
76 #include "public/platform/Platform.h" | 76 #include "public/platform/Platform.h" |
77 #include "public/platform/WebApplicationCacheHost.h" | 77 #include "public/platform/WebApplicationCacheHost.h" |
78 #include "public/platform/WebMediaPlayerSource.h" | 78 #include "public/platform/WebMediaPlayerSource.h" |
79 #include "public/platform/WebRTCPeerConnectionHandler.h" | 79 #include "public/platform/WebRTCPeerConnectionHandler.h" |
80 #include "public/platform/WebSecurityOrigin.h" | 80 #include "public/platform/WebSecurityOrigin.h" |
81 #include "public/platform/WebURL.h" | 81 #include "public/platform/WebURL.h" |
82 #include "public/platform/WebURLError.h" | 82 #include "public/platform/WebURLError.h" |
83 #include "public/platform/WebVector.h" | 83 #include "public/platform/WebVector.h" |
84 #include "public/platform/modules/serviceworker/WebServiceWorkerProvider.h" | 84 #include "public/platform/modules/serviceworker/WebServiceWorkerProvider.h" |
(...skipping 910 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
995 WebDevToolsAgentImpl* FrameLoaderClientImpl::devToolsAgent() { | 995 WebDevToolsAgentImpl* FrameLoaderClientImpl::devToolsAgent() { |
996 return WebLocalFrameImpl::fromFrame(m_webFrame->frame()->localFrameRoot()) | 996 return WebLocalFrameImpl::fromFrame(m_webFrame->frame()->localFrameRoot()) |
997 ->devToolsAgentImpl(); | 997 ->devToolsAgentImpl(); |
998 } | 998 } |
999 | 999 |
1000 KURL FrameLoaderClientImpl::overrideFlashEmbedWithHTML(const KURL& url) { | 1000 KURL FrameLoaderClientImpl::overrideFlashEmbedWithHTML(const KURL& url) { |
1001 return m_webFrame->client()->overrideFlashEmbedWithHTML(WebURL(url)); | 1001 return m_webFrame->client()->overrideFlashEmbedWithHTML(WebURL(url)); |
1002 } | 1002 } |
1003 | 1003 |
1004 } // namespace blink | 1004 } // namespace blink |
OLD | NEW |