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

Unified Diff: chrome/browser/ui/views/ash/tab_scrubber.h

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
Index: chrome/browser/ui/views/ash/tab_scrubber.h
diff --git a/chrome/browser/ui/views/ash/tab_scrubber.h b/chrome/browser/ui/views/ash/tab_scrubber.h
index 29d7d2d2b72c5c4a3e115a7bfd19a9701997f8cd..353e881f2e075bbc4528730038c2dc7df63bd0a1 100644
--- a/chrome/browser/ui/views/ash/tab_scrubber.h
+++ b/chrome/browser/ui/views/ash/tab_scrubber.h
@@ -51,20 +51,20 @@ class TabScrubber : public ui::EventHandler,
virtual ~TabScrubber();
// ui::EventHandler overrides:
- virtual void OnScrollEvent(ui::ScrollEvent* event) OVERRIDE;
+ virtual void OnScrollEvent(ui::ScrollEvent* event) override;
// content::NotificationObserver overrides:
virtual void Observe(int type,
const content::NotificationSource& source,
- const content::NotificationDetails& details) OVERRIDE;
+ const content::NotificationDetails& details) override;
// TabStripObserver overrides.
- virtual void TabStripAddedTabAt(TabStrip* tab_strip, int index) OVERRIDE;
+ virtual void TabStripAddedTabAt(TabStrip* tab_strip, int index) override;
virtual void TabStripMovedTab(TabStrip* tab_strip,
int from_index,
- int to_index) OVERRIDE;
- virtual void TabStripRemovedTabAt(TabStrip* tab_strip, int index) OVERRIDE;
- virtual void TabStripDeleted(TabStrip* tab_strip) OVERRIDE;
+ int to_index) override;
+ virtual void TabStripRemovedTabAt(TabStrip* tab_strip, int index) override;
+ virtual void TabStripDeleted(TabStrip* tab_strip) override;
Browser* GetActiveBrowser();
void FinishScrub(bool activate);

Powered by Google App Engine
This is Rietveld 408576698