| 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/macros.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" | 14 #include "components/sessions/core/session_id.h" |
| 15 #include "components/sessions/core/session_types.h" | 15 #include "components/sessions/core/session_types.h" |
| 16 #include "components/sessions/core/sessions_export.h" | 16 #include "components/sessions/core/sessions_export.h" |
| 17 #include "components/sessions/core/tab_restore_service.h" | 17 #include "components/sessions/core/tab_restore_service.h" |
| 18 | 18 |
| 19 namespace sessions { | 19 namespace sessions { |
| 20 | 20 |
| 21 class TabRestoreService; | 21 class TabRestoreService; |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 std::set<LiveTabContext*> closing_contexts_; | 181 std::set<LiveTabContext*> closing_contexts_; |
| 182 | 182 |
| 183 TimeFactory* const time_factory_; | 183 TimeFactory* const time_factory_; |
| 184 | 184 |
| 185 DISALLOW_COPY_AND_ASSIGN(TabRestoreServiceHelper); | 185 DISALLOW_COPY_AND_ASSIGN(TabRestoreServiceHelper); |
| 186 }; | 186 }; |
| 187 | 187 |
| 188 } // namespace sessions | 188 } // namespace sessions |
| 189 | 189 |
| 190 #endif // COMPONENTS_SESSIONS_CORE_TAB_RESTORE_SERVICE_HELPER_H_ | 190 #endif // COMPONENTS_SESSIONS_CORE_TAB_RESTORE_SERVICE_HELPER_H_ |
| OLD | NEW |