diff options
author | rsleevi@chromium.org <rsleevi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-07 03:02:08 +0000 |
---|---|---|
committer | rsleevi@chromium.org <rsleevi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-07 03:02:08 +0000 |
commit | b94584a231b160d2570cc38e78457fb852eb0c41 (patch) | |
tree | 8d03a214b0f7305c38eb8e2b6852015ae38fef07 /chrome/browser/process_singleton_linux.cc | |
parent | 8bc6596e0bdb39d1450d595bcc62244a5f3190b9 (diff) | |
download | chromium_src-b94584a231b160d2570cc38e78457fb852eb0c41.zip chromium_src-b94584a231b160d2570cc38e78457fb852eb0c41.tar.gz chromium_src-b94584a231b160d2570cc38e78457fb852eb0c41.tar.bz2 |
Linux/ChromeOS Chromium style checker cleanup, chrome/browser edition.
Automated clean up of style checker errors that were missed due to the plugin
not being executed on implementation files.
BUG=115047
Review URL: https://codereview.chromium.org/12212048
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@181164 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/process_singleton_linux.cc')
-rw-r--r-- | chrome/browser/process_singleton_linux.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/chrome/browser/process_singleton_linux.cc b/chrome/browser/process_singleton_linux.cc index 583f4bf..3ad97d9 100644 --- a/chrome/browser/process_singleton_linux.cc +++ b/chrome/browser/process_singleton_linux.cc @@ -435,8 +435,8 @@ class ProcessSingleton::LinuxWatcher } // 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 @@ class ProcessSingleton::LinuxWatcher 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(); } |