Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(103)

Side by Side Diff: third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp

Issue 2444873002: Move WebMIMERegistry impl from //content to blink:platform/network/mime (Closed)
Patch Set: remove indirection Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698