Chromium Code Reviews| Index: chrome/browser/importer/importer_messages.h |
| diff --git a/chrome/browser/importer/importer_messages.h b/chrome/browser/importer/importer_messages.h |
| index 854343af178b09ab498d6b4840898bc38cfb808a..f0ee0190e6f830295e191dcc6acb040de01cadc2 100644 |
| --- a/chrome/browser/importer/importer_messages.h |
| +++ b/chrome/browser/importer/importer_messages.h |
| @@ -86,15 +86,13 @@ struct ParamTraits<history::URLRow> { |
| int visit_count, typed_count; |
| base::Time last_visit; |
| bool hidden; |
| - history::FavIconID favicon_id; |
| if (!ReadParam(m, iter, &id) || |
| !ReadParam(m, iter, &url) || |
| !ReadParam(m, iter, &title) || |
| !ReadParam(m, iter, &visit_count) || |
| !ReadParam(m, iter, &typed_count) || |
| !ReadParam(m, iter, &last_visit) || |
| - !ReadParam(m, iter, &hidden) || |
| - !ReadParam(m, iter, &favicon_id)) |
|
Joao da Silva
2011/03/09 15:45:50
The problem is that this param is Read, but is nev
|
| + !ReadParam(m, iter, &hidden)) |
| return false; |
| *p = history::URLRow(url, id); |
| p->set_title(title); |