| 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 COMPONENTS_SESSIONS_CORE_TAB_RESTORE_SERVICE_HELPER_H_ | 5 #ifndef COMPONENTS_SESSIONS_CORE_TAB_RESTORE_SERVICE_HELPER_H_ |
| 6 #define COMPONENTS_SESSIONS_CORE_TAB_RESTORE_SERVICE_HELPER_H_ | 6 #define COMPONENTS_SESSIONS_CORE_TAB_RESTORE_SERVICE_HELPER_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 12 #include "base/observer_list.h" | 12 #include "base/observer_list.h" |
| 13 #include "base/time/time.h" | 13 #include "base/time/time.h" |
| 14 #include "components/sessions/core/session_id.h" |
| 15 #include "components/sessions/core/session_types.h" |
| 16 #include "components/sessions/core/sessions_export.h" |
| 14 #include "components/sessions/core/tab_restore_service.h" | 17 #include "components/sessions/core/tab_restore_service.h" |
| 15 #include "components/sessions/session_id.h" | |
| 16 #include "components/sessions/session_types.h" | |
| 17 #include "components/sessions/sessions_export.h" | |
| 18 | 18 |
| 19 namespace sessions { | 19 namespace sessions { |
| 20 | 20 |
| 21 class TabRestoreService; | 21 class TabRestoreService; |
| 22 class TabRestoreServiceClient; | 22 class TabRestoreServiceClient; |
| 23 class TabRestoreServiceDelegate; | 23 class TabRestoreServiceDelegate; |
| 24 class TabRestoreServiceObserver; | 24 class TabRestoreServiceObserver; |
| 25 class TimeFactory; | 25 class TimeFactory; |
| 26 | 26 |
| 27 // Helper class used to implement InMemoryTabRestoreService and | 27 // Helper class used to implement InMemoryTabRestoreService and |
| (...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 std::set<TabRestoreServiceDelegate*> closing_delegates_; | 182 std::set<TabRestoreServiceDelegate*> closing_delegates_; |
| 183 | 183 |
| 184 TimeFactory* const time_factory_; | 184 TimeFactory* const time_factory_; |
| 185 | 185 |
| 186 DISALLOW_COPY_AND_ASSIGN(TabRestoreServiceHelper); | 186 DISALLOW_COPY_AND_ASSIGN(TabRestoreServiceHelper); |
| 187 }; | 187 }; |
| 188 | 188 |
| 189 } // namespace sessions | 189 } // namespace sessions |
| 190 | 190 |
| 191 #endif // COMPONENTS_SESSIONS_CORE_TAB_RESTORE_SERVICE_HELPER_H_ | 191 #endif // COMPONENTS_SESSIONS_CORE_TAB_RESTORE_SERVICE_HELPER_H_ |
| OLD | NEW |