| 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
|
|
|