OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/download.h" | 5 #include "sync/engine/download.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 | 8 |
9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
10 #include "sync/engine/process_updates_command.h" | 10 #include "sync/engine/process_updates_command.h" |
11 #include "sync/engine/store_timestamps_command.h" | 11 #include "sync/engine/store_timestamps_command.h" |
12 #include "sync/engine/syncer.h" | 12 #include "sync/engine/syncer.h" |
13 #include "sync/engine/syncer_proto_util.h" | 13 #include "sync/engine/syncer_proto_util.h" |
14 #include "sync/internal_api/public/base/model_type_invalidation_map.h" | |
15 #include "sync/sessions/nudge_tracker.h" | 14 #include "sync/sessions/nudge_tracker.h" |
16 #include "sync/syncable/directory.h" | 15 #include "sync/syncable/directory.h" |
17 #include "sync/syncable/nigori_handler.h" | 16 #include "sync/syncable/nigori_handler.h" |
18 #include "sync/syncable/syncable_read_transaction.h" | 17 #include "sync/syncable/syncable_read_transaction.h" |
19 | 18 |
20 using sync_pb::DebugInfo; | 19 using sync_pb::DebugInfo; |
21 | 20 |
22 namespace syncer { | 21 namespace syncer { |
23 | 22 |
24 using sessions::StatusController; | 23 using sessions::StatusController; |
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
272 ProcessUpdatesCommand process_updates; | 271 ProcessUpdatesCommand process_updates; |
273 process_updates.Execute(session); | 272 process_updates.Execute(session); |
274 | 273 |
275 StoreTimestampsCommand store_timestamps; | 274 StoreTimestampsCommand store_timestamps; |
276 store_timestamps.Execute(session); | 275 store_timestamps.Execute(session); |
277 | 276 |
278 return result; | 277 return result; |
279 } | 278 } |
280 | 279 |
281 } // namespace syncer | 280 } // namespace syncer |
OLD | NEW |