| 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 #include "components/sync_driver/shared_change_processor.h" | 5 #include "components/sync_driver/shared_change_processor.h" |
| 6 | 6 |
| 7 #include <cstddef> | 7 #include <cstddef> |
| 8 #include <string> |
| 8 | 9 |
| 9 #include "base/bind.h" | 10 #include "base/bind.h" |
| 10 #include "base/bind_helpers.h" | 11 #include "base/bind_helpers.h" |
| 11 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
| 12 #include "base/location.h" | 13 #include "base/location.h" |
| 13 #include "base/single_thread_task_runner.h" | 14 #include "base/single_thread_task_runner.h" |
| 14 #include "base/synchronization/waitable_event.h" | 15 #include "base/synchronization/waitable_event.h" |
| 15 #include "base/threading/thread.h" | 16 #include "base/threading/thread.h" |
| 16 #include "components/sync_driver/data_type_error_handler_mock.h" | 17 #include "components/sync_driver/data_type_error_handler_mock.h" |
| 17 #include "components/sync_driver/fake_sync_client.h" | 18 #include "components/sync_driver/fake_sync_client.h" |
| (...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 // creates AttachmentService and passes it back to the syncable service. | 232 // creates AttachmentService and passes it back to the syncable service. |
| 232 TEST_F(SyncSharedChangeProcessorTest, ConnectWithAttachmentStore) { | 233 TEST_F(SyncSharedChangeProcessorTest, ConnectWithAttachmentStore) { |
| 233 SetAttachmentStore(); | 234 SetAttachmentStore(); |
| 234 Connect(); | 235 Connect(); |
| 235 EXPECT_TRUE(HasAttachmentService()); | 236 EXPECT_TRUE(HasAttachmentService()); |
| 236 } | 237 } |
| 237 | 238 |
| 238 } // namespace | 239 } // namespace |
| 239 | 240 |
| 240 } // namespace sync_driver | 241 } // namespace sync_driver |
| OLD | NEW |