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

Unified Diff: athena/wm/bezel_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/virtual_keyboard/virtual_keyboard_manager_impl.cc ('k') | athena/wm/overview_toolbar.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: athena/wm/bezel_controller.h
diff --git a/athena/wm/bezel_controller.h b/athena/wm/bezel_controller.h
index 41cd76c8c915ee341d0f6e665eedd1caf487a60e..007c9cd62267e9d29c453aba68daf0d7db5b5992 100644
--- a/athena/wm/bezel_controller.h
+++ b/athena/wm/bezel_controller.h
@@ -32,7 +32,7 @@ class BezelController : public ui::EventHandler {
// the left and right bezel.
class ScrollDelegate {
public:
- virtual ~ScrollDelegate() {}
+ ~ScrollDelegate() {}
// Beginning of a bezel scroll gesture started from the |bezel|.
// |delta| is the difference between the x-coordinate of the current scroll
@@ -52,7 +52,7 @@ class BezelController : public ui::EventHandler {
};
explicit BezelController(aura::Window* container);
- virtual ~BezelController() {}
+ ~BezelController() override {}
// Set the delegate to handle the gestures from left and right bezels.
// Two touch points are need to perform the bezel scroll gesture from
@@ -76,7 +76,7 @@ class BezelController : public ui::EventHandler {
void SetState(State state, float scroll_delta);
// ui::EventHandler overrides
- virtual void OnGestureEvent(ui::GestureEvent* event) override;
+ void OnGestureEvent(ui::GestureEvent* event) override;
aura::Window* container_;
« no previous file with comments | « athena/virtual_keyboard/virtual_keyboard_manager_impl.cc ('k') | athena/wm/overview_toolbar.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698