Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(183)

Unified Diff: net/http/http_response_headers_unittest.cc

Issue 1154283003: Change most uses of Pickle to base::Pickle (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/http/http_response_headers.cc ('k') | net/http/http_response_info.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/http_response_headers_unittest.cc
diff --git a/net/http/http_response_headers_unittest.cc b/net/http/http_response_headers_unittest.cc
index c3aff96ea9b42e145074de2cedf8bf245e1fed91..0184885dcd31018cd6c4006ba811cd2d01390d2a 100644
--- a/net/http/http_response_headers_unittest.cc
+++ b/net/http/http_response_headers_unittest.cc
@@ -315,10 +315,10 @@ TEST_P(PersistenceTest, Persist) {
HeadersToRaw(&headers);
scoped_refptr<HttpResponseHeaders> parsed1(new HttpResponseHeaders(headers));
- Pickle pickle;
+ base::Pickle pickle;
parsed1->Persist(&pickle, test.options);
- PickleIterator iter(pickle);
+ base::PickleIterator iter(pickle);
scoped_refptr<HttpResponseHeaders> parsed2(new HttpResponseHeaders(&iter));
std::string h2;
« no previous file with comments | « net/http/http_response_headers.cc ('k') | net/http/http_response_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698