| Index: chrome/browser/process_singleton_linux.cc
|
| ===================================================================
|
| --- chrome/browser/process_singleton_linux.cc (revision 181040)
|
| +++ chrome/browser/process_singleton_linux.cc (working copy)
|
| @@ -435,8 +435,8 @@
|
| }
|
|
|
| // MessageLoopForIO::Watcher impl.
|
| - virtual void OnFileCanReadWithoutBlocking(int fd);
|
| - virtual void OnFileCanWriteWithoutBlocking(int fd) {
|
| + virtual void OnFileCanReadWithoutBlocking(int fd) OVERRIDE;
|
| + virtual void OnFileCanWriteWithoutBlocking(int fd) OVERRIDE {
|
| // SocketReader only watches for accept (read) events.
|
| NOTREACHED();
|
| }
|
| @@ -494,14 +494,14 @@
|
| SocketReader* reader);
|
|
|
| // MessageLoopForIO::Watcher impl. These run on the IO thread.
|
| - virtual void OnFileCanReadWithoutBlocking(int fd);
|
| - virtual void OnFileCanWriteWithoutBlocking(int fd) {
|
| + virtual void OnFileCanReadWithoutBlocking(int fd) OVERRIDE;
|
| + virtual void OnFileCanWriteWithoutBlocking(int fd) OVERRIDE {
|
| // ProcessSingleton only watches for accept (read) events.
|
| NOTREACHED();
|
| }
|
|
|
| // MessageLoop::DestructionObserver
|
| - virtual void WillDestroyCurrentMessageLoop() {
|
| + virtual void WillDestroyCurrentMessageLoop() OVERRIDE {
|
| fd_watcher_.StopWatchingFileDescriptor();
|
| }
|
|
|
|
|