Chromium Code Reviews

Unified Diff: mojo/services/view_manager/connection_manager.h

Issue 634483003: replace OVERRIDE and FINAL with override and final in mojo/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: mojo/services/view_manager/connection_manager.h
diff --git a/mojo/services/view_manager/connection_manager.h b/mojo/services/view_manager/connection_manager.h
index c92fd691e70c77c8aa1bf7cc201dfee473ecb9ea..36fc3546916d33a0ee32f4a1b9a47cdb5258fff4 100644
--- a/mojo/services/view_manager/connection_manager.h
+++ b/mojo/services/view_manager/connection_manager.h
@@ -161,21 +161,21 @@ class MOJO_VIEW_MANAGER_EXPORT ConnectionManager : public ServerViewDelegate {
InterfaceRequest<ServiceProvider> service_provider);
// Overridden from ServerViewDelegate:
- virtual void OnViewDestroyed(const ServerView* view) OVERRIDE;
+ virtual void OnViewDestroyed(const ServerView* view) override;
virtual void OnWillChangeViewHierarchy(const ServerView* view,
const ServerView* new_parent,
- const ServerView* old_parent) OVERRIDE;
+ const ServerView* old_parent) override;
virtual void OnViewHierarchyChanged(const ServerView* view,
const ServerView* new_parent,
- const ServerView* old_parent) OVERRIDE;
+ const ServerView* old_parent) override;
virtual void OnViewBoundsChanged(const ServerView* view,
const gfx::Rect& old_bounds,
- const gfx::Rect& new_bounds) OVERRIDE;
- virtual void OnViewSurfaceIdChanged(const ServerView* view) OVERRIDE;
+ const gfx::Rect& new_bounds) override;
+ virtual void OnViewSurfaceIdChanged(const ServerView* view) override;
virtual void OnViewReordered(const ServerView* view,
const ServerView* relative,
- OrderDirection direction) OVERRIDE;
- virtual void OnWillChangeViewVisibility(const ServerView* view) OVERRIDE;
+ OrderDirection direction) override;
+ virtual void OnWillChangeViewVisibility(const ServerView* view) override;
ApplicationConnection* app_connection_;

Powered by Google App Engine