| Index: net/http/http_response_headers.cc
|
| diff --git a/net/http/http_response_headers.cc b/net/http/http_response_headers.cc
|
| index 8c5a9ead49bb6747c7cea168d8bc99b35fa28d52..d56f8f0328eafb0b34837bbe7f51cffe7e42909c 100644
|
| --- a/net/http/http_response_headers.cc
|
| +++ b/net/http/http_response_headers.cc
|
| @@ -156,14 +156,15 @@ HttpResponseHeaders::HttpResponseHeaders(const std::string& raw_input)
|
| HttpUtil::GetStatusCodesForHistogram());
|
| }
|
|
|
| -HttpResponseHeaders::HttpResponseHeaders(PickleIterator* iter)
|
| +HttpResponseHeaders::HttpResponseHeaders(base::PickleIterator* iter)
|
| : response_code_(-1) {
|
| std::string raw_input;
|
| if (iter->ReadString(&raw_input))
|
| Parse(raw_input);
|
| }
|
|
|
| -void HttpResponseHeaders::Persist(Pickle* pickle, PersistOptions options) {
|
| +void HttpResponseHeaders::Persist(base::Pickle* pickle,
|
| + PersistOptions options) {
|
| if (options == PERSIST_RAW) {
|
| pickle->WriteString(raw_headers_);
|
| return; // Done.
|
|
|