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

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: . 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
Index: chrome/browser/plugin_installer.cc
diff --git a/chrome/browser/plugin_installer.cc b/chrome/browser/plugin_installer.cc
index 7466f6a1fbf51e55261a15c17e45d5565eeb3216..38430978ed03a0abe2580d15de3eb1c9af25911b 100644
--- a/chrome/browser/plugin_installer.cc
+++ b/chrome/browser/plugin_installer.cc
@@ -62,13 +62,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() {

Powered by Google App Engine
This is Rietveld 408576698