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

Unified Diff: athena/wm/title_drag_controller.h

Issue 641683003: C++11 override style change for athena (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: rebase Created 6 years, 2 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 | « athena/wm/split_view_controller_unittest.cc ('k') | athena/wm/window_list_provider_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: athena/wm/title_drag_controller.h
diff --git a/athena/wm/title_drag_controller.h b/athena/wm/title_drag_controller.h
index 50557dd440523af101ec4858883471748183ccec..5512405f4d5278407fea98127dcab2556dabc1ec 100644
--- a/athena/wm/title_drag_controller.h
+++ b/athena/wm/title_drag_controller.h
@@ -41,14 +41,14 @@ class TitleDragController : public ui::EventHandler {
public:
TitleDragController(aura::Window* container,
TitleDragControllerDelegate* delegate);
- virtual ~TitleDragController();
+ ~TitleDragController() override;
private:
void EndTransition(aura::Window* window, bool complete);
void OnTransitionEnd(aura::Window* window, bool complete);
// ui::EventHandler:
- virtual void OnGestureEvent(ui::GestureEvent* gesture) override;
+ void OnGestureEvent(ui::GestureEvent* gesture) override;
aura::Window* container_;
TitleDragControllerDelegate* delegate_;
« no previous file with comments | « athena/wm/split_view_controller_unittest.cc ('k') | athena/wm/window_list_provider_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698