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

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

Issue 686553002: Standardize usage of virtual/override/final specifiers. (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 353e881f2e075bbc4528730038c2dc7df63bd0a1..a4a9a06a16161c7b5cb77d8f61e2349648d7ff0f 100644
--- a/chrome/browser/ui/views/ash/tab_scrubber.h
+++ b/chrome/browser/ui/views/ash/tab_scrubber.h
@@ -48,23 +48,23 @@ class TabScrubber : public ui::EventHandler,
private:
TabScrubber();
- virtual ~TabScrubber();
+ ~TabScrubber() override;
// ui::EventHandler overrides:
- virtual void OnScrollEvent(ui::ScrollEvent* event) override;
+ void OnScrollEvent(ui::ScrollEvent* event) override;
// content::NotificationObserver overrides:
- virtual void Observe(int type,
- const content::NotificationSource& source,
- const content::NotificationDetails& details) override;
+ void Observe(int type,
+ const content::NotificationSource& source,
+ const content::NotificationDetails& details) override;
// TabStripObserver overrides.
- 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;
+ void TabStripAddedTabAt(TabStrip* tab_strip, int index) override;
+ void TabStripMovedTab(TabStrip* tab_strip,
+ int from_index,
+ int to_index) override;
+ void TabStripRemovedTabAt(TabStrip* tab_strip, int index) override;
+ void TabStripDeleted(TabStrip* tab_strip) override;
Browser* GetActiveBrowser();
void FinishScrub(bool activate);

Powered by Google App Engine
This is Rietveld 408576698