OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef IOS_CHROME_BROWSER_SESSIONS_TAB_RESTORE_SERVICE_DELEGATE_PROVIDER_IMPL_H
_ |
| 6 #define IOS_CHROME_BROWSER_SESSIONS_TAB_RESTORE_SERVICE_DELEGATE_PROVIDER_IMPL_H
_ |
| 7 |
| 8 #include "ios/public/provider/chrome/browser/sessions/live_tab_context_provider.
h" |
| 9 |
| 10 namespace ios_internal { |
| 11 |
| 12 class TabRestoreServiceDelegateProviderImpl |
| 13 : public ios::LiveTabContextProvider { |
| 14 public: |
| 15 TabRestoreServiceDelegateProviderImpl(); |
| 16 ~TabRestoreServiceDelegateProviderImpl() override; |
| 17 sessions::LiveTabContext* Create( |
| 18 ios::ChromeBrowserState* browser_state) override; |
| 19 sessions::LiveTabContext* FindContextWithID(int32_t desired_id) override; |
| 20 sessions::LiveTabContext* FindContextForTab( |
| 21 const sessions::LiveTab* tab) override; |
| 22 }; |
| 23 |
| 24 } // namespace ios_internal |
| 25 |
| 26 #endif // IOS_CHROME_BROWSER_SESSIONS_TAB_RESTORE_SERVICE_DELEGATE_PROVIDER_IMP
L_H_ |
OLD | NEW |