OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_TEST_HELPER_H_ | 5 #ifndef COMPONENTS_SESSIONS_CORE_BASE_SESSION_SERVICE_TEST_HELPER_H_ |
6 #define COMPONENTS_SESSIONS_CORE_BASE_SESSION_SERVICE_TEST_HELPER_H_ | 6 #define COMPONENTS_SESSIONS_CORE_BASE_SESSION_SERVICE_TEST_HELPER_H_ |
7 | 7 |
8 #include "base/basictypes.h" | |
9 #include "base/callback.h" | 8 #include "base/callback.h" |
| 9 #include "base/macros.h" |
10 #include "base/memory/scoped_vector.h" | 10 #include "base/memory/scoped_vector.h" |
11 #include "base/task/cancelable_task_tracker.h" | 11 #include "base/task/cancelable_task_tracker.h" |
12 | 12 |
13 namespace sessions { | 13 namespace sessions { |
14 class SessionCommand; | 14 class SessionCommand; |
15 class BaseSessionService; | 15 class BaseSessionService; |
16 | 16 |
17 class BaseSessionServiceTestHelper { | 17 class BaseSessionServiceTestHelper { |
18 public: | 18 public: |
19 explicit BaseSessionServiceTestHelper( | 19 explicit BaseSessionServiceTestHelper( |
(...skipping 13 matching lines...) Expand all Loading... |
33 | 33 |
34 private: | 34 private: |
35 BaseSessionService* base_session_service_; | 35 BaseSessionService* base_session_service_; |
36 | 36 |
37 DISALLOW_COPY_AND_ASSIGN(BaseSessionServiceTestHelper); | 37 DISALLOW_COPY_AND_ASSIGN(BaseSessionServiceTestHelper); |
38 }; | 38 }; |
39 | 39 |
40 } // namespace sessions | 40 } // namespace sessions |
41 | 41 |
42 #endif // COMPONENTS_SESSIONS_CORE_BASE_SESSION_SERVICE_TEST_HELPER_H_ | 42 #endif // COMPONENTS_SESSIONS_CORE_BASE_SESSION_SERVICE_TEST_HELPER_H_ |
OLD | NEW |