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

Unified Diff: chrome/browser/plugin_finder.cc

Issue 9866042: Populate correct variable from plug-in information. (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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/plugin_finder.cc
diff --git a/chrome/browser/plugin_finder.cc b/chrome/browser/plugin_finder.cc
index bcba7dcca9cc0b7fec5559f29af0a6b47133bb0e..2b66754ec5e3a02fdaabc6831f597e6b43cd300b 100644
--- a/chrome/browser/plugin_finder.cc
+++ b/chrome/browser/plugin_finder.cc
@@ -138,7 +138,7 @@ PluginInstaller* PluginFinder::CreateInstaller(
bool display_url = false;
plugin_dict->GetBoolean("displayurl", &display_url);
bool requires_authorization = true;
- plugin_dict->GetBoolean("requires_authorization", &display_url);
+ plugin_dict->GetBoolean("requires_authorization", &requires_authorization);
PluginInstaller* installer = new PluginInstaller(identifier,
GURL(url),
GURL(help_url),
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698