| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 entry. | 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/format_macros.h" | 7 #include "base/format_macros.h" |
| 8 #include "base/message_loop.h" | 8 #include "base/message_loop.h" |
| 9 #include "base/time.h" | 9 #include "base/time.h" |
| 10 #include "chrome/browser/chrome_thread.h" | 10 #include "chrome/browser/chrome_thread.h" |
| 11 #include "chrome/browser/sync/engine/apply_updates_command.h" | 11 #include "chrome/browser/sync/engine/apply_updates_command.h" |
| 12 #include "chrome/browser/sync/engine/build_and_process_conflict_sets_command.h" | 12 #include "chrome/browser/sync/engine/build_and_process_conflict_sets_command.h" |
| 13 #include "chrome/browser/sync/engine/build_commit_command.h" | 13 #include "chrome/browser/sync/engine/build_commit_command.h" |
| (...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 326 entry.id_string().c_str(), | 326 entry.id_string().c_str(), |
| 327 entry.parent_id_string().c_str(), | 327 entry.parent_id_string().c_str(), |
| 328 entry.version(), | 328 entry.version(), |
| 329 entry.mtime(), ServerTimeToClientTime(entry.mtime()), | 329 entry.mtime(), ServerTimeToClientTime(entry.mtime()), |
| 330 entry.ctime(), ServerTimeToClientTime(entry.ctime()), | 330 entry.ctime(), ServerTimeToClientTime(entry.ctime()), |
| 331 entry.name().c_str(), entry.sync_timestamp(), | 331 entry.name().c_str(), entry.sync_timestamp(), |
| 332 entry.deleted() ? "deleted, ":""); | 332 entry.deleted() ? "deleted, ":""); |
| 333 } | 333 } |
| 334 | 334 |
| 335 } // namespace browser_sync | 335 } // namespace browser_sync |
| OLD | NEW |