Index: chrome/browser/download/download_target_determiner.cc |
diff --git a/chrome/browser/download/download_target_determiner.cc b/chrome/browser/download/download_target_determiner.cc |
index ee41e0a08880c5fb1f3cfcffb4d6db6140d4656b..f1f6e652c889f43775b5c82e7b1df1b124b10f88 100644 |
--- a/chrome/browser/download/download_target_determiner.cc |
+++ b/chrome/browser/download/download_target_determiner.cc |
@@ -461,7 +461,8 @@ void IsHandledBySafePlugin(content::ResourceContext* resource_context, |
bool is_handled_safely = |
plugin_found && |
(plugin_info.type == WebPluginInfo::PLUGIN_TYPE_PEPPER_IN_PROCESS || |
- plugin_info.type == WebPluginInfo::PLUGIN_TYPE_PEPPER_OUT_OF_PROCESS); |
+ plugin_info.type == WebPluginInfo::PLUGIN_TYPE_PEPPER_OUT_OF_PROCESS || |
+ plugin_info.type == WebPluginInfo::PLUGIN_TYPE_BROWSER_PLUGIN); |
BrowserThread::PostTask( |
BrowserThread::UI, FROM_HERE, base::Bind(callback, is_handled_safely)); |
} |