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

Unified Diff: chrome/browser/ui/views/tabs/tab_strip_unittest.cc

Issue 628773002: replace OVERRIDE and FINAL with override and final in chrome/browser/ui/[t-v]* (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 | « chrome/browser/ui/views/tabs/tab_strip.cc ('k') | chrome/browser/ui/views/tabs/tab_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/views/tabs/tab_strip_unittest.cc
diff --git a/chrome/browser/ui/views/tabs/tab_strip_unittest.cc b/chrome/browser/ui/views/tabs/tab_strip_unittest.cc
index afdd9dcad94e186c0d2807de7639c050f6b21c10..7751b1f0d1f06c4f2fb40d388b1b04bb50c1c557 100644
--- a/chrome/browser/ui/views/tabs/tab_strip_unittest.cc
+++ b/chrome/browser/ui/views/tabs/tab_strip_unittest.cc
@@ -59,22 +59,22 @@ class TestTabStripObserver : public TabStripObserver {
private:
// TabStripObserver overrides.
- virtual void TabStripAddedTabAt(TabStrip* tab_strip, int index) OVERRIDE {
+ virtual void TabStripAddedTabAt(TabStrip* tab_strip, int index) override {
last_tab_added_ = index;
}
virtual void TabStripMovedTab(TabStrip* tab_strip,
int from_index,
- int to_index) OVERRIDE {
+ int to_index) override {
last_tab_moved_from_ = from_index;
last_tab_moved_to_ = to_index;
}
- virtual void TabStripRemovedTabAt(TabStrip* tab_strip, int index) OVERRIDE {
+ virtual void TabStripRemovedTabAt(TabStrip* tab_strip, int index) override {
last_tab_removed_ = index;
}
- virtual void TabStripDeleted(TabStrip* tab_strip) OVERRIDE {
+ virtual void TabStripDeleted(TabStrip* tab_strip) override {
tabstrip_deleted_ = true;
tab_strip_ = NULL;
}
@@ -98,7 +98,7 @@ class TabStripTest : public views::ViewsTestBase {
virtual ~TabStripTest() {}
- virtual void SetUp() OVERRIDE {
+ virtual void SetUp() override {
views::ViewsTestBase::SetUp();
controller_ = new FakeBaseTabStripController;
@@ -118,7 +118,7 @@ class TabStripTest : public views::ViewsTestBase {
widget_->SetContentsView(&parent_);
}
- virtual void TearDown() OVERRIDE {
+ virtual void TearDown() override {
widget_.reset();
views::ViewsTestBase::TearDown();
}
« no previous file with comments | « chrome/browser/ui/views/tabs/tab_strip.cc ('k') | chrome/browser/ui/views/tabs/tab_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698