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

Unified Diff: ipc/ipc_sync_message.h

Issue 1149113006: Move Pickle to base namespace. (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 | « ipc/ipc_message_utils_impl.h ('k') | ipc/mojo/ipc_mojo_message_helper.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ipc/ipc_sync_message.h
diff --git a/ipc/ipc_sync_message.h b/ipc/ipc_sync_message.h
index 2b00f03b22b3ff358c449f7b191281280d157d82..44d0f4f31ae4c9a0ef38b26f337b20fb194653da 100644
--- a/ipc/ipc_sync_message.h
+++ b/ipc/ipc_sync_message.h
@@ -60,7 +60,7 @@ class IPC_EXPORT SyncMessage : public Message {
// Given a reply message, returns an iterator to the beginning of the data
// (i.e. skips over the synchronous specific data).
- static PickleIterator GetDataIterator(const Message* msg);
+ static base::PickleIterator GetDataIterator(const Message* msg);
// Given a synchronous message (or its reply), returns its id.
static int GetMessageId(const Message& msg);
@@ -90,7 +90,7 @@ class IPC_EXPORT MessageReplyDeserializer {
// Derived classes need to implement this, using the given iterator (which
// is skipped past the header for synchronous messages).
virtual bool SerializeOutputParameters(const Message& msg,
- PickleIterator iter) = 0;
+ base::PickleIterator iter) = 0;
};
// When sending a synchronous message, this structure contains an object
« no previous file with comments | « ipc/ipc_message_utils_impl.h ('k') | ipc/mojo/ipc_mojo_message_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698