OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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/message_loop.h" | 7 #include "base/message_loop.h" |
8 #include "base/time.h" | 8 #include "base/time.h" |
9 #include "chrome/browser/browser_thread.h" | |
10 #include "chrome/browser/sync/engine/apply_updates_command.h" | 9 #include "chrome/browser/sync/engine/apply_updates_command.h" |
11 #include "chrome/browser/sync/engine/build_and_process_conflict_sets_command.h" | 10 #include "chrome/browser/sync/engine/build_and_process_conflict_sets_command.h" |
12 #include "chrome/browser/sync/engine/build_commit_command.h" | 11 #include "chrome/browser/sync/engine/build_commit_command.h" |
13 #include "chrome/browser/sync/engine/cleanup_disabled_types_command.h" | 12 #include "chrome/browser/sync/engine/cleanup_disabled_types_command.h" |
14 #include "chrome/browser/sync/engine/clear_data_command.h" | 13 #include "chrome/browser/sync/engine/clear_data_command.h" |
15 #include "chrome/browser/sync/engine/conflict_resolver.h" | 14 #include "chrome/browser/sync/engine/conflict_resolver.h" |
16 #include "chrome/browser/sync/engine/download_updates_command.h" | 15 #include "chrome/browser/sync/engine/download_updates_command.h" |
17 #include "chrome/browser/sync/engine/get_commit_ids_command.h" | 16 #include "chrome/browser/sync/engine/get_commit_ids_command.h" |
18 #include "chrome/browser/sync/engine/net/server_connection_manager.h" | 17 #include "chrome/browser/sync/engine/net/server_connection_manager.h" |
19 #include "chrome/browser/sync/engine/post_commit_message_command.h" | 18 #include "chrome/browser/sync/engine/post_commit_message_command.h" |
(...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
321 entry->Put(SERVER_CTIME, 0); | 320 entry->Put(SERVER_CTIME, 0); |
322 entry->Put(SERVER_VERSION, 0); | 321 entry->Put(SERVER_VERSION, 0); |
323 entry->Put(SERVER_IS_DIR, false); | 322 entry->Put(SERVER_IS_DIR, false); |
324 entry->Put(SERVER_IS_DEL, false); | 323 entry->Put(SERVER_IS_DEL, false); |
325 entry->Put(IS_UNAPPLIED_UPDATE, false); | 324 entry->Put(IS_UNAPPLIED_UPDATE, false); |
326 entry->Put(SERVER_SPECIFICS, sync_pb::EntitySpecifics::default_instance()); | 325 entry->Put(SERVER_SPECIFICS, sync_pb::EntitySpecifics::default_instance()); |
327 entry->Put(SERVER_POSITION_IN_PARENT, 0); | 326 entry->Put(SERVER_POSITION_IN_PARENT, 0); |
328 } | 327 } |
329 | 328 |
330 } // namespace browser_sync | 329 } // namespace browser_sync |
OLD | NEW |