| Index: ipc/ipc_channel_posix.h
 | 
| diff --git a/ipc/ipc_channel_posix.h b/ipc/ipc_channel_posix.h
 | 
| index 7f17b2fc487bc9b0329892b2c0f61a171aa4d56a..631eb909ed2c771ef8229aaca27daf1ee74c0116 100644
 | 
| --- a/ipc/ipc_channel_posix.h
 | 
| +++ b/ipc/ipc_channel_posix.h
 | 
| @@ -62,6 +62,8 @@ class IPC_EXPORT ChannelPosix : public Channel,
 | 
|    virtual void Close() OVERRIDE;
 | 
|    virtual bool Send(Message* message) OVERRIDE;
 | 
|    virtual base::ProcessId GetPeerPID() const OVERRIDE;
 | 
| +  virtual base::ProcessId GetSelfPID() const OVERRIDE;
 | 
| +  virtual ChannelHandle GetPipeHandle() const OVERRIDE;
 | 
|    virtual int GetClientFileDescriptor() const OVERRIDE;
 | 
|    virtual int TakeClientFileDescriptor() OVERRIDE;
 | 
|  
 | 
| @@ -94,7 +96,7 @@ class IPC_EXPORT ChannelPosix : public Channel,
 | 
|  
 | 
|    bool AcceptConnection();
 | 
|    void ClosePipeOnError();
 | 
| -  int GetHelloMessageProcId();
 | 
| +  int GetHelloMessageProcId() const;
 | 
|    void QueueHelloMessage();
 | 
|    void CloseFileDescriptors(Message* msg);
 | 
|    void QueueCloseFDMessage(int fd, int hops);
 | 
| 
 |