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

Side by Side Diff: chrome/browser/ui/tabs/test_tab_strip_model_delegate.h

Issue 671653002: Standardize usage of virtual/override/final in chrome/browser/ui/ (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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_UI_TABS_TEST_TAB_STRIP_MODEL_DELEGATE_H_ 5 #ifndef CHROME_BROWSER_UI_TABS_TEST_TAB_STRIP_MODEL_DELEGATE_H_
6 #define CHROME_BROWSER_UI_TABS_TEST_TAB_STRIP_MODEL_DELEGATE_H_ 6 #define CHROME_BROWSER_UI_TABS_TEST_TAB_STRIP_MODEL_DELEGATE_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "chrome/browser/ui/tabs/tab_strip_model_delegate.h" 10 #include "chrome/browser/ui/tabs/tab_strip_model_delegate.h"
11 11
12 // Mock TabStripModelDelegate. 12 // Mock TabStripModelDelegate.
13 class TestTabStripModelDelegate : public TabStripModelDelegate { 13 class TestTabStripModelDelegate : public TabStripModelDelegate {
14 public: 14 public:
15 TestTabStripModelDelegate(); 15 TestTabStripModelDelegate();
16 virtual ~TestTabStripModelDelegate(); 16 ~TestTabStripModelDelegate() override;
17 17
18 // Overridden from TabStripModelDelegate: 18 // Overridden from TabStripModelDelegate:
19 virtual void AddTabAt(const GURL& url, int index, bool foregroud) override; 19 void AddTabAt(const GURL& url, int index, bool foregroud) override;
20 virtual Browser* CreateNewStripWithContents( 20 Browser* CreateNewStripWithContents(
21 const std::vector<NewStripContents>& contentses, 21 const std::vector<NewStripContents>& contentses,
22 const gfx::Rect& window_bounds, 22 const gfx::Rect& window_bounds,
23 bool maximize) override; 23 bool maximize) override;
24 virtual void WillAddWebContents(content::WebContents* contents) override; 24 void WillAddWebContents(content::WebContents* contents) override;
25 virtual int GetDragActions() const override; 25 int GetDragActions() const override;
26 virtual bool CanDuplicateContentsAt(int index) override; 26 bool CanDuplicateContentsAt(int index) override;
27 virtual void DuplicateContentsAt(int index) override; 27 void DuplicateContentsAt(int index) override;
28 virtual void CreateHistoricalTab(content::WebContents* contents) override; 28 void CreateHistoricalTab(content::WebContents* contents) override;
29 virtual bool ShouldRunUnloadListenerBeforeClosing( 29 bool ShouldRunUnloadListenerBeforeClosing(
30 content::WebContents* contents) override; 30 content::WebContents* contents) override;
31 virtual bool RunUnloadListenerBeforeClosing( 31 bool RunUnloadListenerBeforeClosing(content::WebContents* contents) override;
32 content::WebContents* contents) override; 32 RestoreTabType GetRestoreTabType() override;
33 virtual RestoreTabType GetRestoreTabType() override; 33 void RestoreTab() override;
34 virtual void RestoreTab() override; 34 bool CanBookmarkAllTabs() const override;
35 virtual bool CanBookmarkAllTabs() const override; 35 void BookmarkAllTabs() override;
36 virtual void BookmarkAllTabs() override;
37 36
38 private: 37 private:
39 DISALLOW_COPY_AND_ASSIGN(TestTabStripModelDelegate); 38 DISALLOW_COPY_AND_ASSIGN(TestTabStripModelDelegate);
40 }; 39 };
41 40
42 #endif // CHROME_BROWSER_UI_TABS_TEST_TAB_STRIP_MODEL_DELEGATE_H_ 41 #endif // CHROME_BROWSER_UI_TABS_TEST_TAB_STRIP_MODEL_DELEGATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698