| Index: chrome/common/render_messages.cc
|
| diff --git a/chrome/common/render_messages.cc b/chrome/common/render_messages.cc
|
| index 9ba11063ce262d593e903a28df959d1db3c4a7c7..c6543b5a4a9c30310076c3747c4c7c8337399fd9 100644
|
| --- a/chrome/common/render_messages.cc
|
| +++ b/chrome/common/render_messages.cc
|
| @@ -482,7 +482,6 @@ void ParamTraits<WebPreferences>::Log(const param_type& p, std::string* l) {
|
| }
|
|
|
| void ParamTraits<WebDropData>::Write(Message* m, const param_type& p) {
|
| - WriteParam(m, p.identity);
|
| WriteParam(m, p.url);
|
| WriteParam(m, p.url_title);
|
| WriteParam(m, p.download_metadata);
|
| @@ -498,7 +497,6 @@ void ParamTraits<WebDropData>::Write(Message* m, const param_type& p) {
|
| bool ParamTraits<WebDropData>::Read(const Message* m, void** iter,
|
| param_type* p) {
|
| return
|
| - ReadParam(m, iter, &p->identity) &&
|
| ReadParam(m, iter, &p->url) &&
|
| ReadParam(m, iter, &p->url_title) &&
|
| ReadParam(m, iter, &p->download_metadata) &&
|
|
|