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

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

Issue 5918003: Bugfixes for recent PluginGroup refactoring. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
« no previous file with comments | « webkit/glue/plugins/webplugininfo.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/plugins/webplugininfo.cc
diff --git a/webkit/glue/plugins/webplugininfo.cc b/webkit/glue/plugins/webplugininfo.cc
index 7d2b4e447e6c32c3ce733f3d14e71f13c585e271..0f398a7a085d29320f8d3a0eb6b286e0a2c25330 100644
--- a/webkit/glue/plugins/webplugininfo.cc
+++ b/webkit/glue/plugins/webplugininfo.cc
@@ -32,10 +32,11 @@ 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(),
« no previous file with comments | « webkit/glue/plugins/webplugininfo.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698