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

Unified Diff: extensions/common/user_script_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 | « extensions/common/user_script.h ('k') | extensions/renderer/user_script_set.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/common/user_script_unittest.cc
diff --git a/extensions/common/user_script_unittest.cc b/extensions/common/user_script_unittest.cc
index 4a964f77ef7daedbd41cd52cb7078a63dd18c1f5..1dae0a2581c475fa6cecec993c24b3f143fa6ec8 100644
--- a/extensions/common/user_script_unittest.cc
+++ b/extensions/common/user_script_unittest.cc
@@ -196,10 +196,10 @@ TEST(ExtensionUserScriptTest, Pickle) {
HostID id(HostID::EXTENSIONS, kExtensionId);
script1.set_host_id(id);
- Pickle pickle;
+ base::Pickle pickle;
script1.Pickle(&pickle);
- PickleIterator iter(pickle);
+ base::PickleIterator iter(pickle);
UserScript script2;
script2.Unpickle(pickle, &iter);
« no previous file with comments | « extensions/common/user_script.h ('k') | extensions/renderer/user_script_set.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698