Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2481)

Unified Diff: chrome/browser/plugin_installer.cc

Issue 9536013: Move |requires_authorization| flag for plug-ins out of webkit/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: copyright Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/plugin_installer.h ('k') | chrome/browser/plugin_observer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/plugin_installer.cc
diff --git a/chrome/browser/plugin_installer.cc b/chrome/browser/plugin_installer.cc
index 80c45c901bb41c56afc9d07aa59a17a9d47160e7..7f2f66aae8b7ace95764cec676db6ed2b0ea4b83 100644
--- a/chrome/browser/plugin_installer.cc
+++ b/chrome/browser/plugin_installer.cc
@@ -64,13 +64,15 @@ PluginInstaller::PluginInstaller(const std::string& identifier,
const GURL& plugin_url,
const GURL& help_url,
const string16& name,
- bool url_for_display)
+ bool url_for_display,
+ bool requires_authorization)
: state_(kStateIdle),
identifier_(identifier),
plugin_url_(plugin_url),
help_url_(help_url),
name_(name),
- url_for_display_(url_for_display) {
+ url_for_display_(url_for_display),
+ requires_authorization_(requires_authorization) {
}
PluginInstaller::~PluginInstaller() {
« no previous file with comments | « chrome/browser/plugin_installer.h ('k') | chrome/browser/plugin_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698