| Index: content/common/common_param_traits.cc
|
| ===================================================================
|
| --- content/common/common_param_traits.cc (revision 79142)
|
| +++ content/common/common_param_traits.cc (working copy)
|
| @@ -509,6 +509,7 @@
|
| WriteParam(m, p.last_modified.ToDoubleT());
|
| WriteParam(m, p.last_accessed.ToDoubleT());
|
| WriteParam(m, p.creation_time.ToDoubleT());
|
| + WriteParam(m, p.path);
|
| }
|
|
|
| bool ParamTraits<base::PlatformFileInfo>::Read(
|
| @@ -521,7 +522,8 @@
|
| ReadParam(m, iter, &p->is_directory) &&
|
| ReadParam(m, iter, &last_modified) &&
|
| ReadParam(m, iter, &last_accessed) &&
|
| - ReadParam(m, iter, &creation_time);
|
| + ReadParam(m, iter, &creation_time) &&
|
| + ReadParam(m, iter, &p->path);
|
| if (result) {
|
| p->last_modified = base::Time::FromDoubleT(last_modified);
|
| p->last_accessed = base::Time::FromDoubleT(last_accessed);
|
| @@ -542,6 +544,8 @@
|
| LogParam(p.last_accessed.ToDoubleT(), l);
|
| l->append(",");
|
| LogParam(p.creation_time.ToDoubleT(), l);
|
| + l->append(",");
|
| + LogParam(p.path, l);
|
| l->append(")");
|
| }
|
|
|
|
|