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

Unified Diff: ui/views/examples/slider_example.h

Issue 684463003: 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/examples/single_split_view_example.cc ('k') | ui/views/examples/tabbed_pane_example.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/examples/slider_example.h
diff --git a/ui/views/examples/slider_example.h b/ui/views/examples/slider_example.h
index b27099b90a1111d518b2587c75641d302b281028..7f339d9a4d6f7359f347ada765fce4fac00cbcc1 100644
--- a/ui/views/examples/slider_example.h
+++ b/ui/views/examples/slider_example.h
@@ -18,17 +18,17 @@ class VIEWS_EXAMPLES_EXPORT SliderExample : public ExampleBase,
public SliderListener {
public:
SliderExample();
- virtual ~SliderExample();
+ ~SliderExample() override;
// ExampleBase:
- virtual void CreateExampleView(View* container) override;
+ void CreateExampleView(View* container) override;
private:
// SliderListener:
- virtual void SliderValueChanged(Slider* sender,
- float value,
- float old_value,
- SliderChangeReason reason) override;
+ void SliderValueChanged(Slider* sender,
+ float value,
+ float old_value,
+ SliderChangeReason reason) override;
Slider* slider_;
Label* label_;
« no previous file with comments | « ui/views/examples/single_split_view_example.cc ('k') | ui/views/examples/tabbed_pane_example.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698