| 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 "chrome/browser/sync/glue/sync_backend_host_core.h" | 5 #include "chrome/browser/sync/glue/sync_backend_host_core.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/files/file_util.h" | 8 #include "base/files/file_util.h" |
| 9 #include "base/location.h" | 9 #include "base/location.h" |
| 10 #include "base/metrics/histogram.h" | 10 #include "base/metrics/histogram.h" |
| 11 #include "base/single_thread_task_runner.h" | 11 #include "base/single_thread_task_runner.h" |
| 12 #include "chrome/browser/sync/glue/local_device_info_provider_impl.h" | |
| 13 #include "components/data_use_measurement/core/data_use_user_data.h" | 12 #include "components/data_use_measurement/core/data_use_user_data.h" |
| 14 #include "components/invalidation/public/invalidation_util.h" | 13 #include "components/invalidation/public/invalidation_util.h" |
| 15 #include "components/invalidation/public/object_id_invalidation_map.h" | 14 #include "components/invalidation/public/object_id_invalidation_map.h" |
| 16 #include "components/sync_driver/glue/sync_backend_registrar.h" | 15 #include "components/sync_driver/glue/sync_backend_registrar.h" |
| 17 #include "components/sync_driver/invalidation_adapter.h" | 16 #include "components/sync_driver/invalidation_adapter.h" |
| 17 #include "components/sync_driver/local_device_info_provider_impl.h" |
| 18 #include "sync/internal_api/public/events/protocol_event.h" | 18 #include "sync/internal_api/public/events/protocol_event.h" |
| 19 #include "sync/internal_api/public/http_post_provider_factory.h" | 19 #include "sync/internal_api/public/http_post_provider_factory.h" |
| 20 #include "sync/internal_api/public/internal_components_factory.h" | 20 #include "sync/internal_api/public/internal_components_factory.h" |
| 21 #include "sync/internal_api/public/sessions/commit_counters.h" | 21 #include "sync/internal_api/public/sessions/commit_counters.h" |
| 22 #include "sync/internal_api/public/sessions/status_counters.h" | 22 #include "sync/internal_api/public/sessions/status_counters.h" |
| 23 #include "sync/internal_api/public/sessions/sync_session_snapshot.h" | 23 #include "sync/internal_api/public/sessions/sync_session_snapshot.h" |
| 24 #include "sync/internal_api/public/sessions/update_counters.h" | 24 #include "sync/internal_api/public/sessions/update_counters.h" |
| 25 #include "sync/internal_api/public/sync_context_proxy.h" | 25 #include "sync/internal_api/public/sync_context_proxy.h" |
| 26 #include "sync/internal_api/public/sync_manager.h" | 26 #include "sync/internal_api/public/sync_manager.h" |
| 27 #include "sync/internal_api/public/sync_manager_factory.h" | 27 #include "sync/internal_api/public/sync_manager_factory.h" |
| (...skipping 754 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 782 | 782 |
| 783 void SyncBackendHostCore::ClearServerDataDone( | 783 void SyncBackendHostCore::ClearServerDataDone( |
| 784 const base::Closure& frontend_callback) { | 784 const base::Closure& frontend_callback) { |
| 785 DCHECK_EQ(base::MessageLoop::current(), sync_loop_); | 785 DCHECK_EQ(base::MessageLoop::current(), sync_loop_); |
| 786 host_.Call(FROM_HERE, &SyncBackendHostImpl::ClearServerDataDoneOnFrontendLoop, | 786 host_.Call(FROM_HERE, &SyncBackendHostImpl::ClearServerDataDoneOnFrontendLoop, |
| 787 frontend_callback); | 787 frontend_callback); |
| 788 } | 788 } |
| 789 | 789 |
| 790 | 790 |
| 791 } // namespace browser_sync | 791 } // namespace browser_sync |
| OLD | NEW |