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

Unified Diff: mojo/services/test_service/test_service_impl.h

Issue 617503003: Mojo: MOJO_OVERRIDE -> override in mojo/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased 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/services/test_service/test_service_impl.h
diff --git a/mojo/services/test_service/test_service_impl.h b/mojo/services/test_service/test_service_impl.h
index c921599c30d43808e566cdb24df268a75cbb81c8..379f02e050770da4b543c263237d3b1e38cc2e1b 100644
--- a/mojo/services/test_service/test_service_impl.h
+++ b/mojo/services/test_service/test_service_impl.h
@@ -23,14 +23,14 @@ class TestServiceImpl : public InterfaceImpl<TestService> {
virtual ~TestServiceImpl();
// |TestService| methods:
- virtual void OnConnectionEstablished() MOJO_OVERRIDE;
- virtual void OnConnectionError() MOJO_OVERRIDE;
- virtual void Ping(const mojo::Callback<void()>& callback) MOJO_OVERRIDE;
+ virtual void OnConnectionEstablished() override;
+ virtual void OnConnectionError() override;
+ virtual void Ping(const mojo::Callback<void()>& callback) override;
virtual void ConnectToAppAndGetTime(
const mojo::String& app_url,
- const mojo::Callback<void(int64_t)>& callback) MOJO_OVERRIDE;
- virtual void StartTrackingRequests(const mojo::Callback<void()>& callback)
- MOJO_OVERRIDE;
+ const mojo::Callback<void(int64_t)>& callback) override;
+ virtual void StartTrackingRequests(
+ const mojo::Callback<void()>& callback) override;
private:
TestServiceApplication* const application_;
« no previous file with comments | « mojo/services/test_service/test_service_application.h ('k') | mojo/services/test_service/test_time_service_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698