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

Unified Diff: chrome/browser/ui/android/tab_model/tab_model_base.h

Issue 627043002: replace OVERRIDE and FINAL with override and final in chrome/browser/ui/[a-s]* (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/android/tab_model/tab_model_base.h
diff --git a/chrome/browser/ui/android/tab_model/tab_model_base.h b/chrome/browser/ui/android/tab_model/tab_model_base.h
index 60b4c1e935d6284288a8ab215c346569923b83fc..b1972936f5657fe10af46b99ec2d2baa9efad42a 100644
--- a/chrome/browser/ui/android/tab_model/tab_model_base.h
+++ b/chrome/browser/ui/android/tab_model/tab_model_base.h
@@ -35,21 +35,21 @@ class TabModelBase : public TabModel {
void TabAddedToModel(JNIEnv* env, jobject obj, jobject jtab);
// TabModel:
- virtual int GetTabCount() const OVERRIDE;
- virtual int GetActiveIndex() const OVERRIDE;
- virtual content::WebContents* GetWebContentsAt(int index) const OVERRIDE;
- virtual TabAndroid* GetTabAt(int index) const OVERRIDE;
+ virtual int GetTabCount() const override;
+ virtual int GetActiveIndex() const override;
+ virtual content::WebContents* GetWebContentsAt(int index) const override;
+ virtual TabAndroid* GetTabAt(int index) const override;
- virtual void SetActiveIndex(int index) OVERRIDE;
- virtual void CloseTabAt(int index) OVERRIDE;
+ virtual void SetActiveIndex(int index) override;
+ virtual void CloseTabAt(int index) override;
virtual void CreateTab(content::WebContents* web_contents,
- int parent_tab_id) OVERRIDE;
+ int parent_tab_id) override;
virtual content::WebContents* CreateNewTabForDevTools(
- const GURL& url) OVERRIDE;
+ const GURL& url) override;
// Return true if we are currently restoring sessions asynchronously.
- virtual bool IsSessionRestoreInProgress() const OVERRIDE;
+ virtual bool IsSessionRestoreInProgress() const override;
// Instructs the TabModel to broadcast a notification that all tabs are now
// loaded from storage.
« no previous file with comments | « chrome/browser/ui/android/tab_model/tab_model.h ('k') | chrome/browser/ui/android/tab_model/tab_model_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698