diff options
Diffstat (limited to 'chrome/test/automation/automation_messages.h')
-rw-r--r-- | chrome/test/automation/automation_messages.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/chrome/test/automation/automation_messages.h b/chrome/test/automation/automation_messages.h index a4501aa..49014dc 100644 --- a/chrome/test/automation/automation_messages.h +++ b/chrome/test/automation/automation_messages.h @@ -306,7 +306,6 @@ struct AutomationURLResponse { std::string headers; int64 content_length; base::Time last_modified; - std::string persistent_cookies; std::string redirect_url; int redirect_status; }; @@ -320,7 +319,6 @@ struct ParamTraits<AutomationURLResponse> { WriteParam(m, p.headers); WriteParam(m, p.content_length); WriteParam(m, p.last_modified); - WriteParam(m, p.persistent_cookies); WriteParam(m, p.redirect_url); WriteParam(m, p.redirect_status); } @@ -329,7 +327,6 @@ struct ParamTraits<AutomationURLResponse> { ReadParam(m, iter, &p->headers) && ReadParam(m, iter, &p->content_length) && ReadParam(m, iter, &p->last_modified) && - ReadParam(m, iter, &p->persistent_cookies) && ReadParam(m, iter, &p->redirect_url) && ReadParam(m, iter, &p->redirect_status); } @@ -343,8 +340,6 @@ struct ParamTraits<AutomationURLResponse> { l->append(L", "); LogParam(p.last_modified, l); l->append(L", "); - LogParam(p.persistent_cookies, l); - l->append(L", "); LogParam(p.redirect_url, l); l->append(L", "); LogParam(p.redirect_status, l); |