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

Unified Diff: mojo/examples/window_manager/window_manager.cc

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
« no previous file with comments | « mojo/examples/wget/wget.cc ('k') | mojo/examples/wm_flow/app/app.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/examples/window_manager/window_manager.cc
diff --git a/mojo/examples/window_manager/window_manager.cc b/mojo/examples/window_manager/window_manager.cc
index 47e65aee310d7647fc3575791ebfb8b693888b5f..992407182f3926ffe08b851bd12f2b5cadcb77bb 100644
--- a/mojo/examples/window_manager/window_manager.cc
+++ b/mojo/examples/window_manager/window_manager.cc
@@ -348,14 +348,14 @@ class WindowManager
typedef std::vector<Window*> WindowVector;
// Overridden from ApplicationDelegate:
- virtual void Initialize(ApplicationImpl* app) MOJO_OVERRIDE {
+ virtual void Initialize(ApplicationImpl* app) override {
app_ = app;
views_init_.reset(new ViewsInit);
window_manager_app_->Initialize(app);
}
- virtual bool ConfigureIncomingConnection(ApplicationConnection* connection)
- MOJO_OVERRIDE {
+ virtual bool ConfigureIncomingConnection(
+ ApplicationConnection* connection) override {
connection->AddService(&window_manager_factory_);
window_manager_app_->ConfigureIncomingConnection(connection);
return true;
@@ -399,7 +399,7 @@ class WindowManager
const Id kInvalidSourceViewId = 0;
OnLaunch(kInvalidSourceViewId, TARGET_DEFAULT, url);
}
- virtual void DispatchEvent(EventPtr event) MOJO_OVERRIDE {}
+ virtual void DispatchEvent(EventPtr event) override {}
// Overridden from ui::EventHandler:
virtual void OnEvent(ui::Event* event) OVERRIDE {
« no previous file with comments | « mojo/examples/wget/wget.cc ('k') | mojo/examples/wm_flow/app/app.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698