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

Unified Diff: extensions/browser/sandboxed_unpacker.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 | « crypto/secure_hash_unittest.cc ('k') | extensions/browser/script_executor.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/browser/sandboxed_unpacker.cc
diff --git a/extensions/browser/sandboxed_unpacker.cc b/extensions/browser/sandboxed_unpacker.cc
index 38a7cd9afec01a5c2aa402187be730e9653fac14..8b171607324e9a05cd18d0a2aefeae7796027516 100644
--- a/extensions/browser/sandboxed_unpacker.cc
+++ b/extensions/browser/sandboxed_unpacker.cc
@@ -190,7 +190,7 @@ bool ReadImagesFromFile(const base::FilePath& extension_path,
return false;
IPC::Message pickle(file_str.data(), file_str.size());
- PickleIterator iter(pickle);
+ base::PickleIterator iter(pickle);
return IPC::ReadParam(&pickle, &iter, images);
}
@@ -206,7 +206,7 @@ bool ReadMessageCatalogsFromFile(const base::FilePath& extension_path,
return false;
IPC::Message pickle(file_str.data(), file_str.size());
- PickleIterator iter(pickle);
+ base::PickleIterator iter(pickle);
return IPC::ReadParam(&pickle, &iter, catalogs);
}
« no previous file with comments | « crypto/secure_hash_unittest.cc ('k') | extensions/browser/script_executor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698