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

Unified Diff: ui/base/models/simple_combobox_model.h

Issue 667923002: Standardize usage of virtual/override/final in ui/ (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/base/models/list_model_unittest.cc ('k') | ui/base/models/simple_menu_model.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/base/models/simple_combobox_model.h
diff --git a/ui/base/models/simple_combobox_model.h b/ui/base/models/simple_combobox_model.h
index 4aa28c34ca0b8e1e7ba4e1f2baced5f9b1b08064..beaa04a6b84bc758d40935c383244697668ef367 100644
--- a/ui/base/models/simple_combobox_model.h
+++ b/ui/base/models/simple_combobox_model.h
@@ -16,13 +16,13 @@ namespace ui {
class UI_BASE_EXPORT SimpleComboboxModel : public ComboboxModel {
public:
explicit SimpleComboboxModel(const std::vector<base::string16>& items);
- virtual ~SimpleComboboxModel();
+ ~SimpleComboboxModel() override;
// ui::ComboboxModel:
- virtual int GetItemCount() const override;
- virtual base::string16 GetItemAt(int index) override;
- virtual bool IsItemSeparatorAt(int index) override;
- virtual int GetDefaultIndex() const override;
+ int GetItemCount() const override;
+ base::string16 GetItemAt(int index) override;
+ bool IsItemSeparatorAt(int index) override;
+ int GetDefaultIndex() const override;
private:
const std::vector<base::string16> items_;
« no previous file with comments | « ui/base/models/list_model_unittest.cc ('k') | ui/base/models/simple_menu_model.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698