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

Unified Diff: chrome/browser/extensions/api/tabs/tabs_event_router.h

Issue 624153002: replace OVERRIDE and FINAL with override and final in chrome/browser/extensions/ (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/extensions/api/tabs/tabs_api.h ('k') | chrome/browser/extensions/api/tabs/tabs_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/api/tabs/tabs_event_router.h
diff --git a/chrome/browser/extensions/api/tabs/tabs_event_router.h b/chrome/browser/extensions/api/tabs/tabs_event_router.h
index b5ec372f3af804b99f5713cd9577540f8f677c99..eaa25c049253975a9f3251a553d9d7511be06884 100644
--- a/chrome/browser/extensions/api/tabs/tabs_event_router.h
+++ b/chrome/browser/extensions/api/tabs/tabs_event_router.h
@@ -36,46 +36,46 @@ class TabsEventRouter : public TabStripModelObserver,
virtual ~TabsEventRouter();
// chrome::BrowserListObserver
- virtual void OnBrowserAdded(Browser* browser) OVERRIDE;
- virtual void OnBrowserRemoved(Browser* browser) OVERRIDE;
- virtual void OnBrowserSetLastActive(Browser* browser) OVERRIDE;
+ virtual void OnBrowserAdded(Browser* browser) override;
+ virtual void OnBrowserRemoved(Browser* browser) override;
+ virtual void OnBrowserSetLastActive(Browser* browser) override;
// TabStripModelObserver
virtual void TabInsertedAt(content::WebContents* contents, int index,
- bool active) OVERRIDE;
+ bool active) override;
virtual void TabClosingAt(TabStripModel* tab_strip_model,
content::WebContents* contents,
- int index) OVERRIDE;
+ int index) override;
virtual void TabDetachedAt(content::WebContents* contents,
- int index) OVERRIDE;
+ int index) override;
virtual void ActiveTabChanged(content::WebContents* old_contents,
content::WebContents* new_contents,
int index,
- int reason) OVERRIDE;
+ int reason) override;
virtual void TabSelectionChanged(
TabStripModel* tab_strip_model,
- const ui::ListSelectionModel& old_model) OVERRIDE;
+ const ui::ListSelectionModel& old_model) override;
virtual void TabMoved(content::WebContents* contents,
int from_index,
- int to_index) OVERRIDE;
+ int to_index) override;
virtual void TabChangedAt(content::WebContents* contents,
int index,
- TabChangeType change_type) OVERRIDE;
+ TabChangeType change_type) override;
virtual void TabReplacedAt(TabStripModel* tab_strip_model,
content::WebContents* old_contents,
content::WebContents* new_contents,
- int index) OVERRIDE;
+ int index) override;
virtual void TabPinnedStateChanged(content::WebContents* contents,
- int index) OVERRIDE;
+ int index) override;
// content::NotificationObserver.
virtual void Observe(int type,
const content::NotificationSource& source,
- const content::NotificationDetails& details) OVERRIDE;
+ const content::NotificationDetails& details) override;
// ZoomObserver.
virtual void OnZoomChanged(
- const ZoomController::ZoomChangedEventData& data) OVERRIDE;
+ const ZoomController::ZoomChangedEventData& data) override;
private:
// "Synthetic" event. Called from TabInsertedAt if new tab is detected.
« no previous file with comments | « chrome/browser/extensions/api/tabs/tabs_api.h ('k') | chrome/browser/extensions/api/tabs/tabs_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698