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/syncer.h" | 5 #include "sync/engine/syncer.h" |
6 | 6 |
7 #include "base/debug/trace_event.h" | 7 #include "base/debug/trace_event.h" |
8 #include "base/location.h" | 8 #include "base/location.h" |
9 #include "base/logging.h" | 9 #include "base/logging.h" |
10 #include "base/message_loop.h" | 10 #include "base/message_loop.h" |
11 #include "base/time.h" | 11 #include "base/time/time.h" |
12 #include "build/build_config.h" | 12 #include "build/build_config.h" |
13 #include "sync/engine/apply_control_data_updates.h" | 13 #include "sync/engine/apply_control_data_updates.h" |
14 #include "sync/engine/apply_updates_and_resolve_conflicts_command.h" | 14 #include "sync/engine/apply_updates_and_resolve_conflicts_command.h" |
15 #include "sync/engine/build_commit_command.h" | 15 #include "sync/engine/build_commit_command.h" |
16 #include "sync/engine/commit.h" | 16 #include "sync/engine/commit.h" |
17 #include "sync/engine/conflict_resolver.h" | 17 #include "sync/engine/conflict_resolver.h" |
18 #include "sync/engine/download_updates_command.h" | 18 #include "sync/engine/download_updates_command.h" |
19 #include "sync/engine/net/server_connection_manager.h" | 19 #include "sync/engine/net/server_connection_manager.h" |
20 #include "sync/engine/process_commit_response_command.h" | 20 #include "sync/engine/process_commit_response_command.h" |
21 #include "sync/engine/process_updates_command.h" | 21 #include "sync/engine/process_updates_command.h" |
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
188 dest->Put(SERVER_CTIME, src->Get(SERVER_CTIME)); | 188 dest->Put(SERVER_CTIME, src->Get(SERVER_CTIME)); |
189 dest->Put(SERVER_VERSION, src->Get(SERVER_VERSION)); | 189 dest->Put(SERVER_VERSION, src->Get(SERVER_VERSION)); |
190 dest->Put(SERVER_IS_DIR, src->Get(SERVER_IS_DIR)); | 190 dest->Put(SERVER_IS_DIR, src->Get(SERVER_IS_DIR)); |
191 dest->Put(SERVER_IS_DEL, src->Get(SERVER_IS_DEL)); | 191 dest->Put(SERVER_IS_DEL, src->Get(SERVER_IS_DEL)); |
192 dest->Put(IS_UNAPPLIED_UPDATE, src->Get(IS_UNAPPLIED_UPDATE)); | 192 dest->Put(IS_UNAPPLIED_UPDATE, src->Get(IS_UNAPPLIED_UPDATE)); |
193 dest->Put(SERVER_SPECIFICS, src->Get(SERVER_SPECIFICS)); | 193 dest->Put(SERVER_SPECIFICS, src->Get(SERVER_SPECIFICS)); |
194 dest->Put(SERVER_UNIQUE_POSITION, src->Get(SERVER_UNIQUE_POSITION)); | 194 dest->Put(SERVER_UNIQUE_POSITION, src->Get(SERVER_UNIQUE_POSITION)); |
195 } | 195 } |
196 | 196 |
197 } // namespace syncer | 197 } // namespace syncer |
OLD | NEW |