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_BASE_SESSION_SERVICE_H_ | 5 #ifndef COMPONENTS_SESSIONS_CORE_BASE_SESSION_SERVICE_H_ |
6 #define COMPONENTS_SESSIONS_CORE_BASE_SESSION_SERVICE_H_ | 6 #define COMPONENTS_SESSIONS_CORE_BASE_SESSION_SERVICE_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/callback.h" | 9 #include "base/callback.h" |
10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
11 #include "base/gtest_prod_util.h" | |
12 #include "base/memory/scoped_vector.h" | 11 #include "base/memory/scoped_vector.h" |
13 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
14 #include "base/task/cancelable_task_tracker.h" | 13 #include "base/task/cancelable_task_tracker.h" |
15 #include "components/sessions/core/sessions_export.h" | 14 #include "components/sessions/core/sessions_export.h" |
16 #include "url/gurl.h" | 15 #include "url/gurl.h" |
17 | 16 |
18 | 17 |
19 namespace sessions { | 18 namespace sessions { |
20 class BaseSessionServiceDelegate; | 19 class BaseSessionServiceDelegate; |
21 class SerializedNavigationEntry; | 20 class SerializedNavigationEntry; |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 | 127 |
129 // Used to invoke Save. | 128 // Used to invoke Save. |
130 base::WeakPtrFactory<BaseSessionService> weak_factory_; | 129 base::WeakPtrFactory<BaseSessionService> weak_factory_; |
131 | 130 |
132 DISALLOW_COPY_AND_ASSIGN(BaseSessionService); | 131 DISALLOW_COPY_AND_ASSIGN(BaseSessionService); |
133 }; | 132 }; |
134 | 133 |
135 } // namespace sessions | 134 } // namespace sessions |
136 | 135 |
137 #endif // COMPONENTS_SESSIONS_CORE_BASE_SESSION_SERVICE_H_ | 136 #endif // COMPONENTS_SESSIONS_CORE_BASE_SESSION_SERVICE_H_ |
OLD | NEW |