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

Unified Diff: ui/views/controls/button/blue_button.h

Issue 681753004: 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 | « no previous file | ui/views/controls/button/blue_button_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/controls/button/blue_button.h
diff --git a/ui/views/controls/button/blue_button.h b/ui/views/controls/button/blue_button.h
index cad8245a666df138351e9b951f8f7ae1936d39ac..6335f0ac426e25d140cbed07beb786ac1a03110c 100644
--- a/ui/views/controls/button/blue_button.h
+++ b/ui/views/controls/button/blue_button.h
@@ -16,13 +16,13 @@ class VIEWS_EXPORT BlueButton : public LabelButton {
static const char kViewClassName[];
BlueButton(ButtonListener* listener, const base::string16& text);
- virtual ~BlueButton();
+ ~BlueButton() override;
private:
// Overridden from LabelButton:
- virtual void ResetColorsFromNativeTheme() override;
- virtual const char* GetClassName() const override;
- virtual scoped_ptr<LabelButtonBorder> CreateDefaultBorder() const override;
+ void ResetColorsFromNativeTheme() override;
+ const char* GetClassName() const override;
+ scoped_ptr<LabelButtonBorder> CreateDefaultBorder() const override;
DISALLOW_COPY_AND_ASSIGN(BlueButton);
};
« no previous file with comments | « no previous file | ui/views/controls/button/blue_button_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698