| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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_TABRESTORE_H_ | 5 #ifndef CHROME_BROWSER_UI_BROWSER_TABRESTORE_H_ |
| 6 #define CHROME_BROWSER_UI_BROWSER_TABRESTORE_H_ | 6 #define CHROME_BROWSER_UI_BROWSER_TABRESTORE_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "components/sessions/session_types.h" | 10 #include "components/sessions/core/session_types.h" |
| 11 | 11 |
| 12 class Browser; | 12 class Browser; |
| 13 | 13 |
| 14 namespace content { | 14 namespace content { |
| 15 class SessionStorageNamespace; | 15 class SessionStorageNamespace; |
| 16 class WebContents; | 16 class WebContents; |
| 17 } | 17 } |
| 18 | 18 |
| 19 namespace sessions { | 19 namespace sessions { |
| 20 class SerializedNavigationEntry; | 20 class SerializedNavigationEntry; |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 int selected_navigation, | 54 int selected_navigation, |
| 55 bool from_last_session, | 55 bool from_last_session, |
| 56 const std::string& extension_app_id, | 56 const std::string& extension_app_id, |
| 57 content::SessionStorageNamespace* session_storage_namespace, | 57 content::SessionStorageNamespace* session_storage_namespace, |
| 58 const std::string& user_agent_override); | 58 const std::string& user_agent_override); |
| 59 | 59 |
| 60 | 60 |
| 61 } // namespace chrome | 61 } // namespace chrome |
| 62 | 62 |
| 63 #endif // CHROME_BROWSER_UI_BROWSER_TABRESTORE_H_ | 63 #endif // CHROME_BROWSER_UI_BROWSER_TABRESTORE_H_ |
| OLD | NEW |