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

Unified Diff: webkit/glue/plugins/webplugininfo.cc

Issue 5699005: Policy: Re-enabled plugin still disabled (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed PluginGroup::DisableOutdatedPlugins Created 10 years 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: webkit/glue/plugins/webplugininfo.cc
diff --git a/webkit/glue/plugins/webplugininfo.cc b/webkit/glue/plugins/webplugininfo.cc
index 7d2b4e447e6c32c3ce733f3d14e71f13c585e271..0c29bea50a5eb1bd3fd73569c53cca7b151710d7 100644
--- a/webkit/glue/plugins/webplugininfo.cc
+++ b/webkit/glue/plugins/webplugininfo.cc
@@ -32,13 +32,13 @@ WebPluginInfo& WebPluginInfo::operator=(const WebPluginInfo& rhs) {
}
WebPluginInfo::WebPluginInfo(const string16& fake_name,
+ const FilePath& fake_path,
const string16& fake_version,
const string16& fake_desc)
: name(fake_name),
- path(),
+ path(fake_path),
version(fake_version),
desc(fake_desc),
mime_types(),
enabled(true) {
}
-

Powered by Google App Engine
This is Rietveld 408576698