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 #pragma once | |
8 | 7 |
9 #include <algorithm> | 8 #include <algorithm> |
10 #include <string> | 9 #include <string> |
11 #include <vector> | 10 #include <vector> |
12 | 11 |
13 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
14 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
15 #include "base/message_loop.h" | 14 #include "base/message_loop.h" |
16 #include "sync/engine/model_changing_syncer_command.h" | 15 #include "sync/engine/model_changing_syncer_command.h" |
17 #include "sync/engine/throttled_data_type_tracker.h" | 16 #include "sync/engine/throttled_data_type_tracker.h" |
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
228 | 227 |
229 virtual void SetUp() OVERRIDE; | 228 virtual void SetUp() OVERRIDE; |
230 | 229 |
231 TestUnrecoverableErrorHandler handler_; | 230 TestUnrecoverableErrorHandler handler_; |
232 syncable::MockDirectory mock_directory_; | 231 syncable::MockDirectory mock_directory_; |
233 }; | 232 }; |
234 | 233 |
235 } // namespace syncer | 234 } // namespace syncer |
236 | 235 |
237 #endif // SYNC_TEST_ENGINE_SYNCER_COMMAND_TEST_H_ | 236 #endif // SYNC_TEST_ENGINE_SYNCER_COMMAND_TEST_H_ |
OLD | NEW |