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

Unified Diff: ui/views/controls/prefix_selector_unittest.cc

Issue 623293004: replace OVERRIDE and FINAL with override and final in ui/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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/controls/prefix_selector.h ('k') | ui/views/controls/progress_bar.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/controls/prefix_selector_unittest.cc
diff --git a/ui/views/controls/prefix_selector_unittest.cc b/ui/views/controls/prefix_selector_unittest.cc
index 031c0079aee4d23dde6707541db460166ff1e051..ce041804f703e95d10781bdb4311458f3a51cd51 100644
--- a/ui/views/controls/prefix_selector_unittest.cc
+++ b/ui/views/controls/prefix_selector_unittest.cc
@@ -26,19 +26,19 @@ class TestPrefixDelegate : public PrefixDelegate {
virtual ~TestPrefixDelegate() {}
- virtual int GetRowCount() OVERRIDE {
+ virtual int GetRowCount() override {
return static_cast<int>(rows_.size());
}
- virtual int GetSelectedRow() OVERRIDE {
+ virtual int GetSelectedRow() override {
return selected_row_;
}
- virtual void SetSelectedRow(int row) OVERRIDE {
+ virtual void SetSelectedRow(int row) override {
selected_row_ = row;
}
- virtual base::string16 GetTextForRow(int row) OVERRIDE {
+ virtual base::string16 GetTextForRow(int row) override {
return rows_[row];
}
« no previous file with comments | « ui/views/controls/prefix_selector.h ('k') | ui/views/controls/progress_bar.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698