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 "chrome/browser/sync/engine/sync_scheduler.h" | 5 #include "chrome/browser/sync/engine/sync_scheduler.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 #include <cstring> | 8 #include <cstring> |
9 | 9 |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/location.h" |
11 #include "base/logging.h" | 12 #include "base/logging.h" |
12 #include "base/message_loop.h" | 13 #include "base/message_loop.h" |
13 #include "base/rand_util.h" | 14 #include "base/rand_util.h" |
14 #include "base/tracked.h" | |
15 #include "chrome/browser/sync/engine/syncer.h" | 15 #include "chrome/browser/sync/engine/syncer.h" |
16 #include "chrome/browser/sync/protocol/sync.pb.h" | 16 #include "chrome/browser/sync/protocol/sync.pb.h" |
17 #include "chrome/browser/sync/protocol/proto_enum_conversions.h" | 17 #include "chrome/browser/sync/protocol/proto_enum_conversions.h" |
18 #include "chrome/browser/sync/util/logging.h" | 18 #include "chrome/browser/sync/util/logging.h" |
19 | 19 |
20 using base::TimeDelta; | 20 using base::TimeDelta; |
21 using base::TimeTicks; | 21 using base::TimeTicks; |
22 | 22 |
23 namespace browser_sync { | 23 namespace browser_sync { |
24 | 24 |
(...skipping 1130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1155 | 1155 |
1156 #undef SVLOG_LOC | 1156 #undef SVLOG_LOC |
1157 | 1157 |
1158 #undef SVLOG | 1158 #undef SVLOG |
1159 | 1159 |
1160 #undef SLOG | 1160 #undef SLOG |
1161 | 1161 |
1162 #undef ENUM_CASE | 1162 #undef ENUM_CASE |
1163 | 1163 |
1164 } // browser_sync | 1164 } // browser_sync |
OLD | NEW |