Index: chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.cc |
diff --git a/chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.cc b/chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.cc |
index b46b3f78fe9c1be4996c2cad896ccb873206237a..674afbde1b29ae9a48372ee9649dd77d189ec922 100644 |
--- a/chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.cc |
+++ b/chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.cc |
@@ -209,36 +209,6 @@ void SendExecuteMimeTypeHandlerEvent(scoped_ptr<content::StreamInfo> stream, |
extension_id, web_contents, stream.Pass(), view_id, expected_content_size, |
embedded, render_process_id, render_frame_id); |
} |
- |
-// TODO(raymes): This won't return the right result if plugins haven't been |
-// loaded yet. Fixing this properly really requires fixing crbug.com/443466. |
-bool IsPluginEnabledForExtension(const Extension* extension, |
- const ResourceRequestInfo* info, |
- const std::string& mime_type, |
- const GURL& url) { |
- content::PluginService* service = content::PluginService::GetInstance(); |
- std::vector<content::WebPluginInfo> plugins; |
- service->GetPluginInfoArray(url, mime_type, true, &plugins, nullptr); |
- content::PluginServiceFilter* filter = service->GetFilter(); |
- |
- for (auto& plugin : plugins) { |
- // Check that the plugin is running the extension. |
- if (plugin.path != |
- base::FilePath::FromUTF8Unsafe(extension->url().spec())) { |
- continue; |
- } |
- // Check that the plugin is actually enabled. |
- if (!filter || filter->IsPluginAvailable(info->GetChildID(), |
- info->GetRenderFrameID(), |
- info->GetContext(), |
- url, |
- GURL(), |
- &plugin)) { |
- return true; |
- } |
- } |
- return false; |
-} |
#endif // !defined(ENABLE_EXTENSIONS) |
#if !defined(OS_ANDROID) |
@@ -626,6 +596,7 @@ bool ChromeResourceDispatcherHostDelegate::ShouldForceDownloadResource( |
} |
bool ChromeResourceDispatcherHostDelegate::ShouldInterceptResourceAsStream( |
+ const base::FilePath& plugin_path, |
net::URLRequest* request, |
const std::string& mime_type, |
GURL* origin, |
@@ -638,6 +609,7 @@ bool ChromeResourceDispatcherHostDelegate::ShouldInterceptResourceAsStream( |
const scoped_refptr<const extensions::InfoMap> extension_info_map( |
io_data->GetExtensionInfoMap()); |
std::vector<std::string> whitelist = MimeTypesHandler::GetMIMETypeWhitelist(); |
+ |
raymes
2015/03/16 05:36:50
nit: don't need a newline
Deepak
2015/03/16 10:17:32
Done.
|
// Go through the white-listed extensions and try to use them to intercept |
// the URL request. |
for (size_t i = 0; i < whitelist.size(); ++i) { |
@@ -651,25 +623,26 @@ bool ChromeResourceDispatcherHostDelegate::ShouldInterceptResourceAsStream( |
!extension_info_map->IsIncognitoEnabled(extension_id))) { |
continue; |
} |
- |
MimeTypesHandler* handler = MimeTypesHandler::GetHandler(extension); |
- if (handler && handler->CanHandleMIMEType(mime_type)) { |
+ if (plugin_path == |
raymes
2015/03/16 05:36:50
We should add a comment above this line:
// If the
Deepak
2015/03/16 10:17:33
Done.
|
+ base::FilePath::FromUTF8Unsafe(extension->url().spec())) { |
StreamTargetInfo target_info; |
*origin = Extension::GetBaseURLFromExtensionId(extension_id); |
target_info.extension_id = extension_id; |
- if (!handler->handler_url().empty()) { |
- // This is reached in the case of MimeHandlerViews. If the |
- // MimeHandlerView plugin is disabled, then we shouldn't intercept the |
- // stream. |
- if (!IsPluginEnabledForExtension(extension, info, mime_type, |
- request->url())) { |
- continue; |
- } |
- target_info.view_id = base::GenerateGUID(); |
- *payload = target_info.view_id; |
- } |
+ DCHECK(!handler->handler_url().empty()); |
+ target_info.view_id = base::GenerateGUID(); |
+ *payload = target_info.view_id; |
stream_target_info_[request] = target_info; |
return true; |
+ } else { |
raymes
2015/03/16 05:36:49
Actually we should do this only if the plugin path
Deepak
2015/03/16 10:17:32
Done.
|
+ if (handler && handler->CanHandleMIMEType(mime_type)) { |
+ StreamTargetInfo target_info; |
+ *origin = Extension::GetBaseURLFromExtensionId(extension_id); |
+ target_info.extension_id = extension_id; |
+ DCHECK(handler->handler_url().empty()); |
+ stream_target_info_[request] = target_info; |
+ return true; |
+ } |
} |
} |
#endif |