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

Unified Diff: ash/touch/touch_hud_projection.h

Issue 680153002: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix formatting 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 | « ash/touch/touch_hud_debug.cc ('k') | ash/touch/touch_hud_projection.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/touch/touch_hud_projection.h
diff --git a/ash/touch/touch_hud_projection.h b/ash/touch/touch_hud_projection.h
index cde756d79c784b1ec3d39194b8d2498a8288b43a..239497624067fd1265377d27e77be3a8aaf3c01e 100644
--- a/ash/touch/touch_hud_projection.h
+++ b/ash/touch/touch_hud_projection.h
@@ -19,18 +19,17 @@ class TouchHudProjection : public TouchObserverHUD {
explicit TouchHudProjection(aura::Window* initial_root);
// Overriden from TouchObserverHUD.
- virtual void Clear() override;
+ void Clear() override;
private:
friend class TouchHudProjectionTest;
- virtual ~TouchHudProjection();
+ ~TouchHudProjection() override;
// Overriden from TouchObserverHUD.
- virtual void OnTouchEvent(ui::TouchEvent* event) override;
- virtual void SetHudForRootWindowController(
- RootWindowController* controller) override;
- virtual void UnsetHudForRootWindowController(
+ void OnTouchEvent(ui::TouchEvent* event) override;
+ void SetHudForRootWindowController(RootWindowController* controller) override;
+ void UnsetHudForRootWindowController(
RootWindowController* controller) override;
std::map<int, TouchPointView*> points_;
« no previous file with comments | « ash/touch/touch_hud_debug.cc ('k') | ash/touch/touch_hud_projection.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698