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

Unified Diff: chrome/browser/ui/autofill/country_combobox_model.h

Issue 671653002: Standardize usage of virtual/override/final in chrome/browser/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
Index: chrome/browser/ui/autofill/country_combobox_model.h
diff --git a/chrome/browser/ui/autofill/country_combobox_model.h b/chrome/browser/ui/autofill/country_combobox_model.h
index 397bbab3e47f17cf0cacc9bc0eb0d38fe3a19dbc..e2341ee140e6c81eba75239d6513a4a8b77dae73 100644
--- a/chrome/browser/ui/autofill/country_combobox_model.h
+++ b/chrome/browser/ui/autofill/country_combobox_model.h
@@ -23,7 +23,7 @@ class PersonalDataManager;
class CountryComboboxModel : public ui::ComboboxModel {
public:
CountryComboboxModel();
- virtual ~CountryComboboxModel();
+ ~CountryComboboxModel() override;
// |filter| is passed each known country's country code. If |filter| returns
// true, an item for that country is added to the model (else it's omitted).
@@ -32,9 +32,9 @@ class CountryComboboxModel : public ui::ComboboxModel {
const base::Callback<bool(const std::string&)>& filter);
// ui::ComboboxModel implementation:
- virtual int GetItemCount() const override;
- virtual base::string16 GetItemAt(int index) override;
- virtual bool IsItemSeparatorAt(int index) override;
+ int GetItemCount() const override;
+ base::string16 GetItemAt(int index) override;
+ bool IsItemSeparatorAt(int index) override;
const std::vector<AutofillCountry*>& countries() const {
return countries_.get();

Powered by Google App Engine
This is Rietveld 408576698