| 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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 #include "platform/RuntimeEnabledFeatures.h" | 68 #include "platform/RuntimeEnabledFeatures.h" |
| 69 #include "platform/UserGestureIndicator.h" | 69 #include "platform/UserGestureIndicator.h" |
| 70 #include "platform/exported/WrappedResourceRequest.h" | 70 #include "platform/exported/WrappedResourceRequest.h" |
| 71 #include "platform/exported/WrappedResourceResponse.h" | 71 #include "platform/exported/WrappedResourceResponse.h" |
| 72 #include "platform/fonts/GlyphPageTreeNode.h" | 72 #include "platform/fonts/GlyphPageTreeNode.h" |
| 73 #include "platform/network/HTTPParsers.h" | 73 #include "platform/network/HTTPParsers.h" |
| 74 #include "platform/plugins/PluginData.h" | 74 #include "platform/plugins/PluginData.h" |
| 75 #include "public/platform/Platform.h" | 75 #include "public/platform/Platform.h" |
| 76 #include "public/platform/WebApplicationCacheHost.h" | 76 #include "public/platform/WebApplicationCacheHost.h" |
| 77 #include "public/platform/WebMediaPlayerSource.h" | 77 #include "public/platform/WebMediaPlayerSource.h" |
| 78 #include "public/platform/WebMimeRegistry.h" | |
| 79 #include "public/platform/WebRTCPeerConnectionHandler.h" | 78 #include "public/platform/WebRTCPeerConnectionHandler.h" |
| 80 #include "public/platform/WebSecurityOrigin.h" | 79 #include "public/platform/WebSecurityOrigin.h" |
| 81 #include "public/platform/WebURL.h" | 80 #include "public/platform/WebURL.h" |
| 82 #include "public/platform/WebURLError.h" | 81 #include "public/platform/WebURLError.h" |
| 83 #include "public/platform/WebVector.h" | 82 #include "public/platform/WebVector.h" |
| 84 #include "public/platform/modules/serviceworker/WebServiceWorkerProvider.h" | 83 #include "public/platform/modules/serviceworker/WebServiceWorkerProvider.h" |
| 85 #include "public/platform/modules/serviceworker/WebServiceWorkerProviderClient.h
" | 84 #include "public/platform/modules/serviceworker/WebServiceWorkerProviderClient.h
" |
| 86 #include "public/web/WebAutofillClient.h" | 85 #include "public/web/WebAutofillClient.h" |
| 87 #include "public/web/WebContentSettingsClient.h" | 86 #include "public/web/WebContentSettingsClient.h" |
| 88 #include "public/web/WebDOMEvent.h" | 87 #include "public/web/WebDOMEvent.h" |
| (...skipping 902 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 991 WebDevToolsAgentImpl* FrameLoaderClientImpl::devToolsAgent() { | 990 WebDevToolsAgentImpl* FrameLoaderClientImpl::devToolsAgent() { |
| 992 return WebLocalFrameImpl::fromFrame(m_webFrame->frame()->localFrameRoot()) | 991 return WebLocalFrameImpl::fromFrame(m_webFrame->frame()->localFrameRoot()) |
| 993 ->devToolsAgentImpl(); | 992 ->devToolsAgentImpl(); |
| 994 } | 993 } |
| 995 | 994 |
| 996 KURL FrameLoaderClientImpl::overrideFlashEmbedWithHTML(const KURL& url) { | 995 KURL FrameLoaderClientImpl::overrideFlashEmbedWithHTML(const KURL& url) { |
| 997 return m_webFrame->client()->overrideFlashEmbedWithHTML(WebURL(url)); | 996 return m_webFrame->client()->overrideFlashEmbedWithHTML(WebURL(url)); |
| 998 } | 997 } |
| 999 | 998 |
| 1000 } // namespace blink | 999 } // namespace blink |
| OLD | NEW |