OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 SYNC_TEST_ENGINE_SYNCER_COMMAND_TEST_H_ | 5 #ifndef SYNC_TEST_ENGINE_SYNCER_COMMAND_TEST_H_ |
6 #define SYNC_TEST_ENGINE_SYNCER_COMMAND_TEST_H_ | 6 #define SYNC_TEST_ENGINE_SYNCER_COMMAND_TEST_H_ |
7 | 7 |
8 #include <algorithm> | 8 #include <algorithm> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
13 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
14 #include "base/message_loop.h" | 14 #include "base/message_loop/message_loop.h" |
15 #include "sync/engine/model_changing_syncer_command.h" | 15 #include "sync/engine/model_changing_syncer_command.h" |
16 #include "sync/engine/traffic_recorder.h" | 16 #include "sync/engine/traffic_recorder.h" |
17 #include "sync/internal_api/public/engine/model_safe_worker.h" | 17 #include "sync/internal_api/public/engine/model_safe_worker.h" |
18 #include "sync/sessions/debug_info_getter.h" | 18 #include "sync/sessions/debug_info_getter.h" |
19 #include "sync/sessions/sync_session.h" | 19 #include "sync/sessions/sync_session.h" |
20 #include "sync/sessions/sync_session_context.h" | 20 #include "sync/sessions/sync_session_context.h" |
21 #include "sync/syncable/directory.h" | 21 #include "sync/syncable/directory.h" |
22 #include "sync/test/engine/fake_model_worker.h" | 22 #include "sync/test/engine/fake_model_worker.h" |
23 #include "sync/test/engine/mock_connection_manager.h" | 23 #include "sync/test/engine/mock_connection_manager.h" |
24 #include "sync/test/engine/test_directory_setter_upper.h" | 24 #include "sync/test/engine/test_directory_setter_upper.h" |
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
220 virtual void TearDown() OVERRIDE; | 220 virtual void TearDown() OVERRIDE; |
221 virtual syncable::Directory* directory() OVERRIDE; | 221 virtual syncable::Directory* directory() OVERRIDE; |
222 | 222 |
223 private: | 223 private: |
224 TestDirectorySetterUpper dir_maker_; | 224 TestDirectorySetterUpper dir_maker_; |
225 }; | 225 }; |
226 | 226 |
227 } // namespace syncer | 227 } // namespace syncer |
228 | 228 |
229 #endif // SYNC_TEST_ENGINE_SYNCER_COMMAND_TEST_H_ | 229 #endif // SYNC_TEST_ENGINE_SYNCER_COMMAND_TEST_H_ |
OLD | NEW |