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

Unified Diff: net/http/http_response_info_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_info.cc ('k') | net/http/http_vary_data.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/http_response_info_unittest.cc
diff --git a/net/http/http_response_info_unittest.cc b/net/http/http_response_info_unittest.cc
index b0f91557a78e97c901f35552643a17911fac54c6..ef7d4118eac4368526805e1b881fc817d855c8b9 100644
--- a/net/http/http_response_info_unittest.cc
+++ b/net/http/http_response_info_unittest.cc
@@ -20,7 +20,7 @@ class HttpResponseInfoTest : public testing::Test {
void PickleAndRestore(const HttpResponseInfo& response_info,
HttpResponseInfo* restored_response_info) const {
- Pickle pickle;
+ base::Pickle pickle;
response_info.Persist(&pickle, false, false);
bool truncated = false;
restored_response_info->InitFromPickle(pickle, &truncated);
« no previous file with comments | « net/http/http_response_info.cc ('k') | net/http/http_vary_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698