| Index: ipc/ipc_test_sink.h
|
| diff --git a/ipc/ipc_test_sink.h b/ipc/ipc_test_sink.h
|
| index a09ceba527c085d8e00b18c8e20810be445bb5ea..81545526f79dc969a1d5ece7d396677c6cafd8be 100644
|
| --- a/ipc/ipc_test_sink.h
|
| +++ b/ipc/ipc_test_sink.h
|
| @@ -77,15 +77,15 @@ class TestSink : public Channel {
|
|
|
| // Interface in IPC::Channel. This copies the message to the sink and then
|
| // deletes it.
|
| - virtual bool Send(IPC::Message* message) OVERRIDE;
|
| - virtual bool Connect() OVERRIDE WARN_UNUSED_RESULT;
|
| - virtual void Close() OVERRIDE;
|
| - virtual base::ProcessId GetPeerPID() const OVERRIDE;
|
| - virtual base::ProcessId GetSelfPID() const OVERRIDE;
|
| + virtual bool Send(IPC::Message* message) override;
|
| + virtual bool Connect() override WARN_UNUSED_RESULT;
|
| + virtual void Close() override;
|
| + virtual base::ProcessId GetPeerPID() const override;
|
| + virtual base::ProcessId GetSelfPID() const override;
|
|
|
| #if defined(OS_POSIX) && !defined(OS_NACL)
|
| - virtual int GetClientFileDescriptor() const OVERRIDE;
|
| - virtual int TakeClientFileDescriptor() OVERRIDE;
|
| + virtual int GetClientFileDescriptor() const override;
|
| + virtual int TakeClientFileDescriptor() override;
|
| #endif // defined(OS_POSIX) && !defined(OS_NACL)
|
|
|
| // Used by the source of the messages to send the message to the sink. This
|
|
|