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/syncer.h" | 5 #include "chrome/browser/sync/engine/syncer.h" |
6 | 6 |
| 7 #include "base/location.h" |
7 #include "base/message_loop.h" | 8 #include "base/message_loop.h" |
8 #include "base/time.h" | 9 #include "base/time.h" |
9 #include "base/tracked.h" | |
10 #include "chrome/browser/sync/engine/apply_updates_command.h" | 10 #include "chrome/browser/sync/engine/apply_updates_command.h" |
11 #include "chrome/browser/sync/engine/build_and_process_conflict_sets_command.h" | 11 #include "chrome/browser/sync/engine/build_and_process_conflict_sets_command.h" |
12 #include "chrome/browser/sync/engine/build_commit_command.h" | 12 #include "chrome/browser/sync/engine/build_commit_command.h" |
13 #include "chrome/browser/sync/engine/cleanup_disabled_types_command.h" | 13 #include "chrome/browser/sync/engine/cleanup_disabled_types_command.h" |
14 #include "chrome/browser/sync/engine/clear_data_command.h" | 14 #include "chrome/browser/sync/engine/clear_data_command.h" |
15 #include "chrome/browser/sync/engine/conflict_resolver.h" | 15 #include "chrome/browser/sync/engine/conflict_resolver.h" |
16 #include "chrome/browser/sync/engine/download_updates_command.h" | 16 #include "chrome/browser/sync/engine/download_updates_command.h" |
17 #include "chrome/browser/sync/engine/get_commit_ids_command.h" | 17 #include "chrome/browser/sync/engine/get_commit_ids_command.h" |
18 #include "chrome/browser/sync/engine/net/server_connection_manager.h" | 18 #include "chrome/browser/sync/engine/net/server_connection_manager.h" |
19 #include "chrome/browser/sync/engine/post_commit_message_command.h" | 19 #include "chrome/browser/sync/engine/post_commit_message_command.h" |
(...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
348 entry->Put(SERVER_CTIME, 0); | 348 entry->Put(SERVER_CTIME, 0); |
349 entry->Put(SERVER_VERSION, 0); | 349 entry->Put(SERVER_VERSION, 0); |
350 entry->Put(SERVER_IS_DIR, false); | 350 entry->Put(SERVER_IS_DIR, false); |
351 entry->Put(SERVER_IS_DEL, false); | 351 entry->Put(SERVER_IS_DEL, false); |
352 entry->Put(IS_UNAPPLIED_UPDATE, false); | 352 entry->Put(IS_UNAPPLIED_UPDATE, false); |
353 entry->Put(SERVER_SPECIFICS, sync_pb::EntitySpecifics::default_instance()); | 353 entry->Put(SERVER_SPECIFICS, sync_pb::EntitySpecifics::default_instance()); |
354 entry->Put(SERVER_POSITION_IN_PARENT, 0); | 354 entry->Put(SERVER_POSITION_IN_PARENT, 0); |
355 } | 355 } |
356 | 356 |
357 } // namespace browser_sync | 357 } // namespace browser_sync |
OLD | NEW |