| 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 #include "components/browser_sync/profile_sync_service.h" | 5 #include "components/browser_sync/profile_sync_service.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 | 8 |
| 9 #include <cstddef> | 9 #include <cstddef> |
| 10 #include <map> | 10 #include <map> |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 #include "components/sync_sessions/sessions_sync_manager.h" | 79 #include "components/sync_sessions/sessions_sync_manager.h" |
| 80 #include "components/sync_sessions/sync_sessions_client.h" | 80 #include "components/sync_sessions/sync_sessions_client.h" |
| 81 #include "components/syncable_prefs/pref_service_syncable.h" | 81 #include "components/syncable_prefs/pref_service_syncable.h" |
| 82 #include "components/version_info/version_info_values.h" | 82 #include "components/version_info/version_info_values.h" |
| 83 #include "net/cookies/cookie_monster.h" | 83 #include "net/cookies/cookie_monster.h" |
| 84 #include "net/url_request/url_request_context_getter.h" | 84 #include "net/url_request/url_request_context_getter.h" |
| 85 #include "ui/base/l10n/l10n_util.h" | 85 #include "ui/base/l10n/l10n_util.h" |
| 86 #include "ui/base/l10n/time_format.h" | 86 #include "ui/base/l10n/time_format.h" |
| 87 | 87 |
| 88 #if defined(OS_ANDROID) | 88 #if defined(OS_ANDROID) |
| 89 #include "components/sync/core/read_transaction.h" | 89 #include "components/sync/syncable/read_transaction.h" |
| 90 #endif | 90 #endif |
| 91 | 91 |
| 92 using sync_sessions::SessionsSyncManager; | 92 using sync_sessions::SessionsSyncManager; |
| 93 using syncer::BackendMigrator; | 93 using syncer::BackendMigrator; |
| 94 using syncer::ChangeProcessor; | 94 using syncer::ChangeProcessor; |
| 95 using syncer::DataTypeController; | 95 using syncer::DataTypeController; |
| 96 using syncer::DataTypeManager; | 96 using syncer::DataTypeManager; |
| 97 using syncer::DataTypeStatusTable; | 97 using syncer::DataTypeStatusTable; |
| 98 using syncer::DeviceInfoService; | 98 using syncer::DeviceInfoService; |
| 99 using syncer::DeviceInfoSyncService; | 99 using syncer::DeviceInfoSyncService; |
| (...skipping 2398 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2498 | 2498 |
| 2499 DCHECK(startup_controller_->IsSetupInProgress()); | 2499 DCHECK(startup_controller_->IsSetupInProgress()); |
| 2500 startup_controller_->SetSetupInProgress(false); | 2500 startup_controller_->SetSetupInProgress(false); |
| 2501 | 2501 |
| 2502 if (IsBackendInitialized()) | 2502 if (IsBackendInitialized()) |
| 2503 ReconfigureDatatypeManager(); | 2503 ReconfigureDatatypeManager(); |
| 2504 NotifyObservers(); | 2504 NotifyObservers(); |
| 2505 } | 2505 } |
| 2506 | 2506 |
| 2507 } // namespace browser_sync | 2507 } // namespace browser_sync |
| OLD | NEW |