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

Unified Diff: ui/views/controls/slide_out_view.h

Issue 681883002: Standardize usage of virtual/override/final specifiers. (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. 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 | « ui/views/controls/single_split_view_unittest.cc ('k') | ui/views/controls/slider.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/controls/slide_out_view.h
diff --git a/ui/views/controls/slide_out_view.h b/ui/views/controls/slide_out_view.h
index 46b41351e2ec341d1450e0117d45be6216aa97e2..b721b3b33b8de82a5d52d25b6e81de645ff38f26 100644
--- a/ui/views/controls/slide_out_view.h
+++ b/ui/views/controls/slide_out_view.h
@@ -16,14 +16,14 @@ class VIEWS_EXPORT SlideOutView : public views::View,
public ui::ImplicitAnimationObserver {
public:
SlideOutView();
- virtual ~SlideOutView();
+ ~SlideOutView() override;
protected:
// Called when user intends to close the View by sliding it out.
virtual void OnSlideOut() = 0;
// Overridden from views::View.
- virtual void OnGestureEvent(ui::GestureEvent* event) override;
+ void OnGestureEvent(ui::GestureEvent* event) override;
private:
enum SlideDirection {
@@ -38,7 +38,7 @@ class VIEWS_EXPORT SlideOutView : public views::View,
void SlideOutAndClose(SlideDirection direction);
// Overridden from ImplicitAnimationObserver.
- virtual void OnImplicitAnimationsCompleted() override;
+ void OnImplicitAnimationsCompleted() override;
float gesture_scroll_amount_;
« no previous file with comments | « ui/views/controls/single_split_view_unittest.cc ('k') | ui/views/controls/slider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698