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

Unified Diff: ui/views/examples/label_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/examples_window.cc ('k') | ui/views/examples/label_example.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/examples/label_example.h
diff --git a/ui/views/examples/label_example.h b/ui/views/examples/label_example.h
index f597742b9dd98450a309b066ec5338709bec102d..ef967afef7aade92a33e480a273b6b37b465fdb5 100644
--- a/ui/views/examples/label_example.h
+++ b/ui/views/examples/label_example.h
@@ -27,20 +27,20 @@ class VIEWS_EXAMPLES_EXPORT LabelExample : public ExampleBase,
public TextfieldController {
public:
LabelExample();
- virtual ~LabelExample();
+ ~LabelExample() override;
// ExampleBase:
- virtual void CreateExampleView(View* container) override;
+ void CreateExampleView(View* container) override;
// ButtonListener:
- virtual void ButtonPressed(Button* button, const ui::Event& event) override;
+ void ButtonPressed(Button* button, const ui::Event& event) override;
// ComboboxListener:
- virtual void OnPerformAction(Combobox* combobox) override;
+ void OnPerformAction(Combobox* combobox) override;
// TextfieldController:
- virtual void ContentsChanged(Textfield* sender,
- const base::string16& new_contents) override;
+ void ContentsChanged(Textfield* sender,
+ const base::string16& new_contents) override;
private:
// Add a customizable label and various controls to modify its presentation.
« no previous file with comments | « ui/views/examples/examples_window.cc ('k') | ui/views/examples/label_example.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698