| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/glue/sync_backend_host_impl.h" | 5 #include "components/sync/driver/glue/sync_backend_host_impl.h" |
| 6 | 6 |
| 7 #include <stdint.h> | 7 #include <stdint.h> |
| 8 | 8 |
| 9 #include <cstddef> | 9 #include <cstddef> |
| 10 #include <map> | 10 #include <map> |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 #include "components/invalidation/impl/profile_invalidation_provider.h" | 24 #include "components/invalidation/impl/profile_invalidation_provider.h" |
| 25 #include "components/invalidation/public/invalidator_state.h" | 25 #include "components/invalidation/public/invalidator_state.h" |
| 26 #include "components/invalidation/public/object_id_invalidation_map.h" | 26 #include "components/invalidation/public/object_id_invalidation_map.h" |
| 27 #include "components/sync/base/experiments.h" | 27 #include "components/sync/base/experiments.h" |
| 28 #include "components/sync/base/model_type.h" | 28 #include "components/sync/base/model_type.h" |
| 29 #include "components/sync/base/test_unrecoverable_error_handler.h" | 29 #include "components/sync/base/test_unrecoverable_error_handler.h" |
| 30 #include "components/sync/core/http_bridge_network_resources.h" | 30 #include "components/sync/core/http_bridge_network_resources.h" |
| 31 #include "components/sync/core/network_resources.h" | 31 #include "components/sync/core/network_resources.h" |
| 32 #include "components/sync/core/sync_manager_factory.h" | 32 #include "components/sync/core/sync_manager_factory.h" |
| 33 #include "components/sync/core/test/fake_sync_manager.h" | 33 #include "components/sync/core/test/fake_sync_manager.h" |
| 34 #include "components/sync/driver/device_info.h" | 34 #include "components/sync/device_info/device_info.h" |
| 35 #include "components/sync/driver/fake_sync_client.h" | 35 #include "components/sync/driver/fake_sync_client.h" |
| 36 #include "components/sync/driver/sync_frontend.h" | 36 #include "components/sync/driver/sync_frontend.h" |
| 37 #include "components/sync/driver/sync_prefs.h" | 37 #include "components/sync/driver/sync_prefs.h" |
| 38 #include "components/sync/engine/model_safe_worker.h" | 38 #include "components/sync/engine/model_safe_worker.h" |
| 39 #include "components/sync/engine/passive_model_worker.h" | 39 #include "components/sync/engine/passive_model_worker.h" |
| 40 #include "components/sync/protocol/encryption.pb.h" | 40 #include "components/sync/protocol/encryption.pb.h" |
| 41 #include "components/sync/protocol/sync_protocol_error.h" | 41 #include "components/sync/protocol/sync_protocol_error.h" |
| 42 #include "components/sync/sessions/commit_counters.h" | 42 #include "components/sync/sessions/commit_counters.h" |
| 43 #include "components/sync/sessions/status_counters.h" | 43 #include "components/sync/sessions/status_counters.h" |
| 44 #include "components/sync/sessions/update_counters.h" | 44 #include "components/sync/sessions/update_counters.h" |
| (...skipping 816 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 861 backend_->StopSyncingForShutdown(); | 861 backend_->StopSyncingForShutdown(); |
| 862 // Verify that call to DeactivateNonBlockingDataType doesn't assert. | 862 // Verify that call to DeactivateNonBlockingDataType doesn't assert. |
| 863 backend_->DeactivateNonBlockingDataType(syncer::AUTOFILL); | 863 backend_->DeactivateNonBlockingDataType(syncer::AUTOFILL); |
| 864 backend_->Shutdown(syncer::STOP_SYNC); | 864 backend_->Shutdown(syncer::STOP_SYNC); |
| 865 backend_.reset(); | 865 backend_.reset(); |
| 866 } | 866 } |
| 867 | 867 |
| 868 } // namespace | 868 } // namespace |
| 869 | 869 |
| 870 } // namespace browser_sync | 870 } // namespace browser_sync |
| OLD | NEW |