| 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/sync/engine_impl/sync_scheduler_impl.h" | 5 #include "components/sync/engine_impl/sync_scheduler_impl.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <cstring> | 8 #include <cstring> |
| 9 #include <utility> | 9 #include <utility> |
| 10 | 10 |
| 11 #include "base/bind.h" | 11 #include "base/bind.h" |
| 12 #include "base/bind_helpers.h" | 12 #include "base/bind_helpers.h" |
| 13 #include "base/compiler_specific.h" | |
| 14 #include "base/location.h" | 13 #include "base/location.h" |
| 15 #include "base/logging.h" | 14 #include "base/logging.h" |
| 16 #include "base/single_thread_task_runner.h" | 15 #include "base/single_thread_task_runner.h" |
| 17 #include "base/threading/platform_thread.h" | 16 #include "base/threading/platform_thread.h" |
| 18 #include "base/threading/thread_task_runner_handle.h" | 17 #include "base/threading/thread_task_runner_handle.h" |
| 19 #include "components/sync/base/data_type_histogram.h" | 18 #include "components/sync/base/data_type_histogram.h" |
| 20 #include "components/sync/base/logging.h" | 19 #include "components/sync/base/logging.h" |
| 21 #include "components/sync/engine_impl/backoff_delay_provider.h" | 20 #include "components/sync/engine_impl/backoff_delay_provider.h" |
| 22 #include "components/sync/engine_impl/syncer.h" | |
| 23 #include "components/sync/protocol/proto_enum_conversions.h" | 21 #include "components/sync/protocol/proto_enum_conversions.h" |
| 24 #include "components/sync/protocol/sync.pb.h" | 22 #include "components/sync/protocol/sync.pb.h" |
| 25 | 23 |
| 26 using base::TimeDelta; | 24 using base::TimeDelta; |
| 27 using base::TimeTicks; | 25 using base::TimeTicks; |
| 28 | 26 |
| 29 namespace syncer { | 27 namespace syncer { |
| 30 | 28 |
| 31 using sync_pb::GetUpdatesCallerInfo; | 29 using sync_pb::GetUpdatesCallerInfo; |
| 32 | 30 |
| (...skipping 930 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 963 | 961 |
| 964 #undef SDVLOG_LOC | 962 #undef SDVLOG_LOC |
| 965 | 963 |
| 966 #undef SDVLOG | 964 #undef SDVLOG |
| 967 | 965 |
| 968 #undef SLOG | 966 #undef SLOG |
| 969 | 967 |
| 970 #undef ENUM_CASE | 968 #undef ENUM_CASE |
| 971 | 969 |
| 972 } // namespace syncer | 970 } // namespace syncer |
| OLD | NEW |