Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(235)

Unified Diff: mojo/shell/external_application_listener_posix.h

Issue 619493002: Mojo: Convert OVERRIDE -> override in various subdirectories of mojo/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: mojo/shell/external_application_listener_posix.h
diff --git a/mojo/shell/external_application_listener_posix.h b/mojo/shell/external_application_listener_posix.h
index fab6e3206e7a42963b48c300a40a4230c252ae41..9a7eedce5ee33b5dbed03bc460f4f190f0f49e5c 100644
--- a/mojo/shell/external_application_listener_posix.h
+++ b/mojo/shell/external_application_listener_posix.h
@@ -63,7 +63,7 @@ class ExternalApplicationListenerPosix
// Errors are ignored.
virtual void ListenInBackground(
const base::FilePath& listen_socket_path,
- const RegisterCallback& register_callback) OVERRIDE;
+ const RegisterCallback& register_callback) override;
// Begin listening (on io_runner) to a socket at listen_socket_path.
// Incoming registration requests will be forwarded to register_callback.
@@ -71,11 +71,11 @@ class ExternalApplicationListenerPosix
virtual void ListenInBackgroundWithErrorCallback(
const base::FilePath& listen_socket_path,
const RegisterCallback& register_callback,
- const ErrorCallback& error_callback) OVERRIDE;
+ const ErrorCallback& error_callback) override;
// Block the current thread until listening has started on io_runner.
// If listening has already started, returns immediately.
- virtual void WaitForListening() OVERRIDE;
+ virtual void WaitForListening() override;
private:
class RegistrarImpl;

Powered by Google App Engine
This is Rietveld 408576698