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

Unified Diff: components/sessions/serialized_navigation_entry_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 | « components/sessions/serialized_navigation_entry.cc ('k') | components/sessions/session_command.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sessions/serialized_navigation_entry_unittest.cc
diff --git a/components/sessions/serialized_navigation_entry_unittest.cc b/components/sessions/serialized_navigation_entry_unittest.cc
index ac6ae54e999fbed7686b460174b3cb38dcc56856..417601e1c778d03f30875c089590ab311811d214 100644
--- a/components/sessions/serialized_navigation_entry_unittest.cc
+++ b/components/sessions/serialized_navigation_entry_unittest.cc
@@ -107,11 +107,11 @@ TEST(SerializedNavigationEntryTest, Pickle) {
const SerializedNavigationEntry old_navigation =
SerializedNavigationEntryTestHelper::CreateNavigationForTest();
- Pickle pickle;
+ base::Pickle pickle;
old_navigation.WriteToPickle(30000, &pickle);
SerializedNavigationEntry new_navigation;
- PickleIterator pickle_iterator(pickle);
+ base::PickleIterator pickle_iterator(pickle);
EXPECT_TRUE(new_navigation.ReadFromPickle(&pickle_iterator));
// Fields that are written to the pickle.
« no previous file with comments | « components/sessions/serialized_navigation_entry.cc ('k') | components/sessions/session_command.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698