| Index: chrome/browser/apps/app_shim/unix_domain_socket_acceptor.h
|
| diff --git a/chrome/browser/apps/app_shim/unix_domain_socket_acceptor.h b/chrome/browser/apps/app_shim/unix_domain_socket_acceptor.h
|
| index 19a03d1b095013a6aee1640f367ad79c74407297..a402178ff435f59a4e40a6aecbeaddd866843511 100644
|
| --- a/chrome/browser/apps/app_shim/unix_domain_socket_acceptor.h
|
| +++ b/chrome/browser/apps/app_shim/unix_domain_socket_acceptor.h
|
| @@ -30,7 +30,7 @@ class UnixDomainSocketAcceptor : public base::MessageLoopForIO::Watcher {
|
|
|
| UnixDomainSocketAcceptor(const base::FilePath& path, Delegate* delegate);
|
|
|
| - virtual ~UnixDomainSocketAcceptor();
|
| + ~UnixDomainSocketAcceptor() override;
|
|
|
| // Call this to start listening on the socket.
|
| bool Listen();
|
| @@ -40,8 +40,8 @@ class UnixDomainSocketAcceptor : public base::MessageLoopForIO::Watcher {
|
|
|
| private:
|
| bool CreateSocket();
|
| - virtual void OnFileCanReadWithoutBlocking(int fd) override;
|
| - virtual void OnFileCanWriteWithoutBlocking(int fd) override;
|
| + void OnFileCanReadWithoutBlocking(int fd) override;
|
| + void OnFileCanWriteWithoutBlocking(int fd) override;
|
|
|
| base::MessageLoopForIO::FileDescriptorWatcher
|
| server_listen_connection_watcher_;
|
|
|