| 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 "sync/engine/sync_scheduler_impl.h" | 5 #include "sync/engine/sync_scheduler_impl.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <cstring> | 8 #include <cstring> |
| 9 | 9 |
| 10 #include "base/auto_reset.h" | 10 #include "base/auto_reset.h" |
| 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" | 13 #include "base/compiler_specific.h" |
| 14 #include "base/location.h" | 14 #include "base/location.h" |
| 15 #include "base/logging.h" | 15 #include "base/logging.h" |
| 16 #include "base/message_loop/message_loop.h" | 16 #include "base/message_loop/message_loop.h" |
| 17 #include "sync/engine/backoff_delay_provider.h" | 17 #include "sync/engine/backoff_delay_provider.h" |
| 18 #include "sync/engine/syncer.h" | 18 #include "sync/engine/syncer.h" |
| 19 #include "sync/notifier/object_id_invalidation_map.h" | |
| 20 #include "sync/protocol/proto_enum_conversions.h" | 19 #include "sync/protocol/proto_enum_conversions.h" |
| 21 #include "sync/protocol/sync.pb.h" | 20 #include "sync/protocol/sync.pb.h" |
| 22 #include "sync/util/data_type_histogram.h" | 21 #include "sync/util/data_type_histogram.h" |
| 23 #include "sync/util/logging.h" | 22 #include "sync/util/logging.h" |
| 24 | 23 |
| 25 using base::TimeDelta; | 24 using base::TimeDelta; |
| 26 using base::TimeTicks; | 25 using base::TimeTicks; |
| 27 | 26 |
| 28 namespace syncer { | 27 namespace syncer { |
| 29 | 28 |
| (...skipping 880 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 910 | 909 |
| 911 #undef SDVLOG_LOC | 910 #undef SDVLOG_LOC |
| 912 | 911 |
| 913 #undef SDVLOG | 912 #undef SDVLOG |
| 914 | 913 |
| 915 #undef SLOG | 914 #undef SLOG |
| 916 | 915 |
| 917 #undef ENUM_CASE | 916 #undef ENUM_CASE |
| 918 | 917 |
| 919 } // namespace syncer | 918 } // namespace syncer |
| OLD | NEW |