| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "build/build_config.h" | 5 #include "build/build_config.h" |
| 6 | 6 |
| 7 #include "chrome/browser/sync/glue/sync_backend_host.h" | 7 #include "chrome/browser/sync/glue/sync_backend_host.h" |
| 8 | 8 |
| 9 #include <algorithm> | 9 #include <algorithm> |
| 10 #include <map> | 10 #include <map> |
| 11 | 11 |
| 12 #include "base/bind.h" | 12 #include "base/bind.h" |
| 13 #include "base/command_line.h" | 13 #include "base/command_line.h" |
| 14 #include "base/compiler_specific.h" | 14 #include "base/compiler_specific.h" |
| 15 #include "base/file_util.h" | 15 #include "base/file_util.h" |
| 16 #include "base/location.h" |
| 16 #include "base/task.h" | 17 #include "base/task.h" |
| 17 #include "base/threading/thread_restrictions.h" | 18 #include "base/threading/thread_restrictions.h" |
| 18 #include "base/tracked.h" | |
| 19 #include "base/utf_string_conversions.h" | 19 #include "base/utf_string_conversions.h" |
| 20 #include "chrome/browser/net/gaia/token_service.h" | 20 #include "chrome/browser/net/gaia/token_service.h" |
| 21 #include "chrome/browser/prefs/pref_service.h" | 21 #include "chrome/browser/prefs/pref_service.h" |
| 22 #include "chrome/browser/profiles/profile.h" | 22 #include "chrome/browser/profiles/profile.h" |
| 23 #include "chrome/browser/sync/glue/change_processor.h" | 23 #include "chrome/browser/sync/glue/change_processor.h" |
| 24 #include "chrome/browser/sync/glue/http_bridge.h" | 24 #include "chrome/browser/sync/glue/http_bridge.h" |
| 25 #include "chrome/browser/sync/internal_api/base_transaction.h" | 25 #include "chrome/browser/sync/internal_api/base_transaction.h" |
| 26 #include "chrome/browser/sync/internal_api/read_transaction.h" | 26 #include "chrome/browser/sync/internal_api/read_transaction.h" |
| 27 #include "chrome/browser/sync/glue/sync_backend_registrar.h" | 27 #include "chrome/browser/sync/glue/sync_backend_registrar.h" |
| 28 #include "chrome/browser/sync/notifier/sync_notifier.h" | 28 #include "chrome/browser/sync/notifier/sync_notifier.h" |
| (...skipping 883 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 912 : reason(sync_api::CONFIGURE_REASON_UNKNOWN) {} | 912 : reason(sync_api::CONFIGURE_REASON_UNKNOWN) {} |
| 913 | 913 |
| 914 SyncBackendHost::PendingConfigureDataTypesState:: | 914 SyncBackendHost::PendingConfigureDataTypesState:: |
| 915 ~PendingConfigureDataTypesState() {} | 915 ~PendingConfigureDataTypesState() {} |
| 916 | 916 |
| 917 #undef SVLOG | 917 #undef SVLOG |
| 918 | 918 |
| 919 #undef SLOG | 919 #undef SLOG |
| 920 | 920 |
| 921 } // namespace browser_sync | 921 } // namespace browser_sync |
| OLD | NEW |