OLD | NEW |
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 |
(...skipping 20 matching lines...) Expand all Loading... |
31 virtual content::WebContents* GetActiveWebContents() const OVERRIDE; | 31 virtual content::WebContents* GetActiveWebContents() const OVERRIDE; |
32 virtual bool IsTabPinned(int index) const OVERRIDE; | 32 virtual bool IsTabPinned(int index) const OVERRIDE; |
33 virtual content::WebContents* AddRestoredTab( | 33 virtual content::WebContents* AddRestoredTab( |
34 const std::vector<TabNavigation>& navigations, | 34 const std::vector<TabNavigation>& 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) OVERRIDE; | 41 content::SessionStorageNamespace* storage_namespace, |
| 42 const std::string& user_agent_override) OVERRIDE; |
42 virtual void ReplaceRestoredTab( | 43 virtual void ReplaceRestoredTab( |
43 const std::vector<TabNavigation>& navigations, | 44 const std::vector<TabNavigation>& navigations, |
44 int selected_navigation, | 45 int selected_navigation, |
45 bool from_last_session, | 46 bool from_last_session, |
46 const std::string& extension_app_id, | 47 const std::string& extension_app_id, |
47 content::SessionStorageNamespace* session_storage_namespace) OVERRIDE; | 48 content::SessionStorageNamespace* session_storage_namespace, |
| 49 const std::string& user_agent_override) OVERRIDE; |
48 virtual void CloseTab() OVERRIDE; | 50 virtual void CloseTab() OVERRIDE; |
49 | 51 |
50 private: | 52 private: |
51 Browser* browser_; | 53 Browser* browser_; |
52 | 54 |
53 DISALLOW_COPY_AND_ASSIGN(BrowserTabRestoreServiceDelegate); | 55 DISALLOW_COPY_AND_ASSIGN(BrowserTabRestoreServiceDelegate); |
54 }; | 56 }; |
55 | 57 |
56 #endif // CHROME_BROWSER_UI_BROWSER_TAB_RESTORE_SERVICE_DELEGATE_H_ | 58 #endif // CHROME_BROWSER_UI_BROWSER_TAB_RESTORE_SERVICE_DELEGATE_H_ |
OLD | NEW |