Index: chrome/browser/plugins/plugin_observer.cc |
diff --git a/chrome/browser/plugins/plugin_observer.cc b/chrome/browser/plugins/plugin_observer.cc |
index dc5bf0e411118e2c90f879c8dd7514a9bd269f3e..69c5a46e3d9cdb4171623710d950fdc5abe32825 100644 |
--- a/chrome/browser/plugins/plugin_observer.cc |
+++ b/chrome/browser/plugins/plugin_observer.cc |
@@ -335,8 +335,6 @@ bool PluginObserver::OnMessageReceived( |
IPC_BEGIN_MESSAGE_MAP(PluginObserver, message) |
IPC_MESSAGE_HANDLER(ChromeViewHostMsg_BlockedOutdatedPlugin, |
OnBlockedOutdatedPlugin) |
- IPC_MESSAGE_HANDLER(ChromeViewHostMsg_BlockedUnauthorizedPlugin, |
- OnBlockedUnauthorizedPlugin) |
IPC_MESSAGE_HANDLER(ChromeViewHostMsg_NPAPINotSupported, |
OnNPAPINotSupported) |
#if defined(ENABLE_PLUGIN_INSTALLATION) |
@@ -367,16 +365,6 @@ bool PluginObserver::OnMessageReceived(const IPC::Message& message) { |
return true; |
} |
-void PluginObserver::OnBlockedUnauthorizedPlugin( |
- const base::string16& name, |
- const std::string& identifier) { |
- UnauthorizedPluginInfoBarDelegate::Create( |
- InfoBarService::FromWebContents(web_contents()), |
- Profile::FromBrowserContext(web_contents()->GetBrowserContext())-> |
- GetHostContentSettingsMap(), |
- name, identifier); |
-} |
- |
void PluginObserver::OnBlockedOutdatedPlugin(int placeholder_id, |
const std::string& identifier) { |
#if defined(ENABLE_PLUGIN_INSTALLATION) |