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

Unified Diff: chrome/common/render_messages.h

Issue 17367: Fix layout test failures. Looks like keying the plugins based on OriginalFil... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 11 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/common/render_messages.h
===================================================================
--- chrome/common/render_messages.h (revision 7888)
+++ chrome/common/render_messages.h (working copy)
@@ -1122,7 +1122,6 @@
typedef WebPluginInfo param_type;
static void Write(Message* m, const param_type& p) {
WriteParam(m, p.name);
- WriteParam(m, p.filename);
WriteParam(m, p.path);
WriteParam(m, p.version);
WriteParam(m, p.desc);
@@ -1131,7 +1130,6 @@
static bool Read(const Message* m, void** iter, param_type* r) {
return
ReadParam(m, iter, &r->name) &&
- ReadParam(m, iter, &r->filename) &&
ReadParam(m, iter, &r->path) &&
ReadParam(m, iter, &r->version) &&
ReadParam(m, iter, &r->desc) &&
@@ -1141,7 +1139,6 @@
l->append(L"(");
LogParam(p.name, l);
l->append(L", ");
- LogParam(p.filename, l);
l->append(L", ");
LogParam(p.path, l);
l->append(L", ");

Powered by Google App Engine
This is Rietveld 408576698