| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 #include "ios/chrome/browser/sessions/ios_chrome_tab_restore_service_client.h" | 5 #include "ios/chrome/browser/sessions/ios_chrome_tab_restore_service_client.h" |
| 6 | 6 |
| 7 #include "ios/chrome/browser/browser_state/chrome_browser_state.h" |
| 7 #include "ios/chrome/browser/chrome_url_constants.h" | 8 #include "ios/chrome/browser/chrome_url_constants.h" |
| 8 #include "ios/public/provider/chrome/browser/browser_state/chrome_browser_state.
h" | |
| 9 #include "ios/public/provider/chrome/browser/chrome_browser_provider.h" | 9 #include "ios/public/provider/chrome/browser/chrome_browser_provider.h" |
| 10 #include "ios/public/provider/chrome/browser/sessions/live_tab_context_provider.
h" | 10 #include "ios/public/provider/chrome/browser/sessions/live_tab_context_provider.
h" |
| 11 #include "ios/web/public/web_thread.h" | 11 #include "ios/web/public/web_thread.h" |
| 12 #include "url/gurl.h" | 12 #include "url/gurl.h" |
| 13 | 13 |
| 14 IOSChromeTabRestoreServiceClient::IOSChromeTabRestoreServiceClient( | 14 IOSChromeTabRestoreServiceClient::IOSChromeTabRestoreServiceClient( |
| 15 ios::ChromeBrowserState* browser_state) | 15 ios::ChromeBrowserState* browser_state) |
| 16 : browser_state_(browser_state) {} | 16 : browser_state_(browser_state) {} |
| 17 | 17 |
| 18 IOSChromeTabRestoreServiceClient::~IOSChromeTabRestoreServiceClient() {} | 18 IOSChromeTabRestoreServiceClient::~IOSChromeTabRestoreServiceClient() {} |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 | 74 |
| 75 bool IOSChromeTabRestoreServiceClient::HasLastSession() { | 75 bool IOSChromeTabRestoreServiceClient::HasLastSession() { |
| 76 return false; | 76 return false; |
| 77 } | 77 } |
| 78 | 78 |
| 79 void IOSChromeTabRestoreServiceClient::GetLastSession( | 79 void IOSChromeTabRestoreServiceClient::GetLastSession( |
| 80 const sessions::GetLastSessionCallback& callback, | 80 const sessions::GetLastSessionCallback& callback, |
| 81 base::CancelableTaskTracker* tracker) { | 81 base::CancelableTaskTracker* tracker) { |
| 82 NOTREACHED(); | 82 NOTREACHED(); |
| 83 } | 83 } |
| OLD | NEW |