Index: chrome/browser/plugin_installer.h |
diff --git a/chrome/browser/plugin_installer.h b/chrome/browser/plugin_installer.h |
index b3a9f53543c6bcc602211138d4d7ad7298b0cb59..0b431132bc134892f2eebabe177d02659b5bc3a6 100644 |
--- a/chrome/browser/plugin_installer.h |
+++ b/chrome/browser/plugin_installer.h |
@@ -33,8 +33,7 @@ class PluginInstaller : public content::DownloadItem::Observer { |
const GURL& plugin_url, |
const GURL& help_url, |
const string16& name, |
- bool url_for_display, |
- bool requires_authorization); |
+ bool url_for_display); |
virtual ~PluginInstaller(); |
virtual void OnDownloadUpdated(content::DownloadItem* download) OVERRIDE; |
@@ -56,9 +55,6 @@ class PluginInstaller : public content::DownloadItem::Observer { |
// Human-readable name of the plug-in. |
const string16& name() const { return name_; } |
- // Whether the plug-in requires user authorization to run. |
- bool requires_authorization() const { return requires_authorization_; } |
- |
// If |url_for_display| is false, |plugin_url| is the URL of the download page |
// for the plug-in, which should be opened in a new tab. If it is true, |
// |plugin_url| is the URL of the plug-in installer binary, which can be |
@@ -94,7 +90,6 @@ class PluginInstaller : public content::DownloadItem::Observer { |
GURL help_url_; |
string16 name_; |
bool url_for_display_; |
- bool requires_authorization_; |
DISALLOW_COPY_AND_ASSIGN(PluginInstaller); |
}; |