| 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_SESSIONS_IN_MEMORY_TAB_RESTORE_SERVICE_H_ | 5 #ifndef CHROME_BROWSER_SESSIONS_IN_MEMORY_TAB_RESTORE_SERVICE_H_ |
| 6 #define CHROME_BROWSER_SESSIONS_IN_MEMORY_TAB_RESTORE_SERVICE_H_ | 6 #define CHROME_BROWSER_SESSIONS_IN_MEMORY_TAB_RESTORE_SERVICE_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 // TabRestoreService: | 35 // TabRestoreService: |
| 36 void AddObserver(TabRestoreServiceObserver* observer) override; | 36 void AddObserver(TabRestoreServiceObserver* observer) override; |
| 37 void RemoveObserver(TabRestoreServiceObserver* observer) override; | 37 void RemoveObserver(TabRestoreServiceObserver* observer) override; |
| 38 void CreateHistoricalTab(content::WebContents* contents, int index) override; | 38 void CreateHistoricalTab(content::WebContents* contents, int index) override; |
| 39 void BrowserClosing(TabRestoreServiceDelegate* delegate) override; | 39 void BrowserClosing(TabRestoreServiceDelegate* delegate) override; |
| 40 void BrowserClosed(TabRestoreServiceDelegate* delegate) override; | 40 void BrowserClosed(TabRestoreServiceDelegate* delegate) override; |
| 41 void ClearEntries() override; | 41 void ClearEntries() override; |
| 42 const Entries& entries() const override; | 42 const Entries& entries() const override; |
| 43 std::vector<content::WebContents*> RestoreMostRecentEntry( | 43 std::vector<content::WebContents*> RestoreMostRecentEntry( |
| 44 TabRestoreServiceDelegate* delegate, | 44 TabRestoreServiceDelegate* delegate, |
| 45 chrome::HostDesktopType host_desktop_type) override; | 45 ui::HostDesktopType host_desktop_type) override; |
| 46 Tab* RemoveTabEntryById(SessionID::id_type id) override; | 46 Tab* RemoveTabEntryById(SessionID::id_type id) override; |
| 47 std::vector<content::WebContents*> RestoreEntryById( | 47 std::vector<content::WebContents*> RestoreEntryById( |
| 48 TabRestoreServiceDelegate* delegate, | 48 TabRestoreServiceDelegate* delegate, |
| 49 SessionID::id_type id, | 49 SessionID::id_type id, |
| 50 chrome::HostDesktopType host_desktop_type, | 50 ui::HostDesktopType host_desktop_type, |
| 51 WindowOpenDisposition disposition) override; | 51 WindowOpenDisposition disposition) override; |
| 52 void LoadTabsFromLastSession() override; | 52 void LoadTabsFromLastSession() override; |
| 53 bool IsLoaded() const override; | 53 bool IsLoaded() const override; |
| 54 void DeleteLastSession() override; | 54 void DeleteLastSession() override; |
| 55 void Shutdown() override; | 55 void Shutdown() override; |
| 56 | 56 |
| 57 private: | 57 private: |
| 58 scoped_ptr<sessions::TabRestoreServiceClient> client_; | 58 scoped_ptr<sessions::TabRestoreServiceClient> client_; |
| 59 TabRestoreServiceHelper helper_; | 59 TabRestoreServiceHelper helper_; |
| 60 | 60 |
| 61 DISALLOW_COPY_AND_ASSIGN(InMemoryTabRestoreService); | 61 DISALLOW_COPY_AND_ASSIGN(InMemoryTabRestoreService); |
| 62 }; | 62 }; |
| 63 | 63 |
| 64 #endif // CHROME_BROWSER_SESSIONS_IN_MEMORY_TAB_RESTORE_SERVICE_H_ | 64 #endif // CHROME_BROWSER_SESSIONS_IN_MEMORY_TAB_RESTORE_SERVICE_H_ |
| OLD | NEW |