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

Unified Diff: chrome/browser/ui/android/tab_model/tab_model_unittest.cc

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_unittest.cc
diff --git a/chrome/browser/ui/android/tab_model/tab_model_unittest.cc b/chrome/browser/ui/android/tab_model/tab_model_unittest.cc
index 85808e811c3b24fd4a4c01401d3b08c741577b02..9808857274f8a297f307660a37ac4a046a26d3ca 100644
--- a/chrome/browser/ui/android/tab_model/tab_model_unittest.cc
+++ b/chrome/browser/ui/android/tab_model/tab_model_unittest.cc
@@ -29,23 +29,23 @@ class TestTabModel : public TabModel {
explicit TestTabModel(Profile* profile)
: TabModel(profile) {}
- virtual int GetTabCount() const OVERRIDE { return 0; }
- virtual int GetActiveIndex() const OVERRIDE { return 0; }
- virtual content::WebContents* GetWebContentsAt(int index) const OVERRIDE {
+ virtual int GetTabCount() const override { return 0; }
+ virtual int GetActiveIndex() const override { return 0; }
+ virtual content::WebContents* GetWebContentsAt(int index) const override {
return NULL;
}
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 NULL;
}
- virtual bool IsSessionRestoreInProgress() const OVERRIDE { return false; }
- virtual TabAndroid* GetTabAt(int index) const OVERRIDE {
+ virtual bool IsSessionRestoreInProgress() const override { return false; }
+ virtual TabAndroid* GetTabAt(int index) const override {
return NULL;
}
- virtual void SetActiveIndex(int index) OVERRIDE {}
- virtual void CloseTabAt(int index) OVERRIDE {}
+ virtual void SetActiveIndex(int index) override {}
+ virtual void CloseTabAt(int index) override {}
};
TEST_F(TabModelTest, TestProfileHandling) {
« no previous file with comments | « chrome/browser/ui/android/tab_model/tab_model_base.h ('k') | chrome/browser/ui/android/toolbar/toolbar_model_android.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698