Chromium Code Reviews| Index: content/renderer/renderer_glue.cc |
| diff --git a/content/renderer/renderer_glue.cc b/content/renderer/renderer_glue.cc |
| index 3b3f01aebe4586312e950f8a8c31001f6649c8cd..4ef9d2864c51f06598186efb5051491e81549382 100644 |
| --- a/content/renderer/renderer_glue.cc |
| +++ b/content/renderer/renderer_glue.cc |
| @@ -157,19 +157,6 @@ void GetPlugins(bool refresh, |
| new ViewHostMsg_GetPlugins(refresh, plugins)); |
| } |
| -bool IsProtocolSupportedForMedia(const GURL& url) { |
| - // If new protocol is to be added here, we need to make sure the response is |
| - // validated accordingly in the media engine. |
| - if (url.SchemeIsFile() || url.SchemeIs(chrome::kHttpScheme) || |
| - url.SchemeIs(chrome::kHttpsScheme) || |
| - url.SchemeIs(chrome::kDataScheme) || |
| - url.SchemeIs(chrome::kFileSystemScheme) || |
| - url.SchemeIs(chrome::kBlobScheme)) |
| - return true; |
| - return |
| - content::GetContentClient()->renderer()->IsProtocolSupportedForMedia(url); |
|
scherkus (not reviewing)
2011/11/21 22:26:41
should also remove methods in chrome/renderer/chro
piman
2011/11/21 23:13:03
Done.
|
| -} |
| - |
| // static factory function |
| ResourceLoaderBridge* ResourceLoaderBridge::Create( |
| const ResourceLoaderBridge::RequestInfo& request_info) { |