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

Side by Side Diff: chrome/browser/ui/browser_tab_restore_service_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_BROWSER_TAB_RESTORE_SERVICE_DELEGATE_H_ 5 #ifndef CHROME_BROWSER_UI_BROWSER_TAB_RESTORE_SERVICE_DELEGATE_H_
6 #define CHROME_BROWSER_UI_BROWSER_TAB_RESTORE_SERVICE_DELEGATE_H_ 6 #define CHROME_BROWSER_UI_BROWSER_TAB_RESTORE_SERVICE_DELEGATE_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/compiler_specific.h" 11 #include "base/compiler_specific.h"
12 #include "chrome/browser/sessions/tab_restore_service_delegate.h" 12 #include "chrome/browser/sessions/tab_restore_service_delegate.h"
13 13
14 class Browser; 14 class Browser;
15 15
16 // Implementation of TabRestoreServiceDelegate which uses an instance of 16 // Implementation of TabRestoreServiceDelegate which uses an instance of
17 // Browser in order to fulfil its duties. 17 // Browser in order to fulfil its duties.
18 class BrowserTabRestoreServiceDelegate : public TabRestoreServiceDelegate { 18 class BrowserTabRestoreServiceDelegate : public TabRestoreServiceDelegate {
19 public: 19 public:
20 explicit BrowserTabRestoreServiceDelegate(Browser* browser) 20 explicit BrowserTabRestoreServiceDelegate(Browser* browser)
21 : browser_(browser) {} 21 : browser_(browser) {}
22 virtual ~BrowserTabRestoreServiceDelegate() {} 22 ~BrowserTabRestoreServiceDelegate() override {}
23 23
24 // Overridden from TabRestoreServiceDelegate: 24 // Overridden from TabRestoreServiceDelegate:
25 virtual void ShowBrowserWindow() override; 25 void ShowBrowserWindow() override;
26 virtual const SessionID& GetSessionID() const override; 26 const SessionID& GetSessionID() const override;
27 virtual int GetTabCount() const override; 27 int GetTabCount() const override;
28 virtual int GetSelectedIndex() const override; 28 int GetSelectedIndex() const override;
29 virtual std::string GetAppName() const override; 29 std::string GetAppName() const override;
30 virtual content::WebContents* GetWebContentsAt(int index) const override; 30 content::WebContents* GetWebContentsAt(int index) const override;
31 virtual content::WebContents* GetActiveWebContents() const override; 31 content::WebContents* GetActiveWebContents() const override;
32 virtual bool IsTabPinned(int index) const override; 32 bool IsTabPinned(int index) const override;
33 virtual content::WebContents* AddRestoredTab( 33 content::WebContents* AddRestoredTab(
34 const std::vector<sessions::SerializedNavigationEntry>& navigations, 34 const std::vector<sessions::SerializedNavigationEntry>& navigations,
35 int tab_index, 35 int tab_index,
36 int selected_navigation, 36 int selected_navigation,
37 const std::string& extension_app_id, 37 const std::string& extension_app_id,
38 bool select, 38 bool select,
39 bool pin, 39 bool pin,
40 bool from_last_session, 40 bool from_last_session,
41 content::SessionStorageNamespace* storage_namespace, 41 content::SessionStorageNamespace* storage_namespace,
42 const std::string& user_agent_override) override; 42 const std::string& user_agent_override) override;
43 virtual content::WebContents* ReplaceRestoredTab( 43 content::WebContents* ReplaceRestoredTab(
44 const std::vector<sessions::SerializedNavigationEntry>& navigations, 44 const std::vector<sessions::SerializedNavigationEntry>& navigations,
45 int selected_navigation, 45 int selected_navigation,
46 bool from_last_session, 46 bool from_last_session,
47 const std::string& extension_app_id, 47 const std::string& extension_app_id,
48 content::SessionStorageNamespace* session_storage_namespace, 48 content::SessionStorageNamespace* session_storage_namespace,
49 const std::string& user_agent_override) override; 49 const std::string& user_agent_override) override;
50 virtual void CloseTab() override; 50 void CloseTab() override;
51 51
52 private: 52 private:
53 Browser* browser_; 53 Browser* browser_;
54 54
55 DISALLOW_COPY_AND_ASSIGN(BrowserTabRestoreServiceDelegate); 55 DISALLOW_COPY_AND_ASSIGN(BrowserTabRestoreServiceDelegate);
56 }; 56 };
57 57
58 #endif // CHROME_BROWSER_UI_BROWSER_TAB_RESTORE_SERVICE_DELEGATE_H_ 58 #endif // CHROME_BROWSER_UI_BROWSER_TAB_RESTORE_SERVICE_DELEGATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698