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. |