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

Unified Diff: extensions/browser/user_script_loader.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
Index: extensions/browser/user_script_loader.cc
diff --git a/extensions/browser/user_script_loader.cc b/extensions/browser/user_script_loader.cc
index 44070930e946f53224b0557c3030fdcde4ec58c6..047080a5c65ffe82b26395c69093329ad7617f84 100644
--- a/extensions/browser/user_script_loader.cc
+++ b/extensions/browser/user_script_loader.cc
@@ -275,7 +275,7 @@ void UserScriptLoader::StartLoad() {
// static
scoped_ptr<base::SharedMemory> UserScriptLoader::Serialize(
const UserScriptList& scripts) {
- Pickle pickle;
+ base::Pickle pickle;
pickle.WriteSizeT(scripts.size());
for (const UserScript& script : scripts) {
// TODO(aa): This can be replaced by sending content script metadata to
« no previous file with comments | « extensions/browser/script_executor.cc ('k') | extensions/common/api/sockets/sockets_manifest_permission_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698