Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(77)

Side by Side Diff: chrome/browser/sync/engine/syncer.cc

Issue 495001: sync: Fix license copyright text. (Closed)
Patch Set: " Created 11 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/browser/sync/engine/syncer.h ('k') | chrome/browser/sync/engine/syncer_end_command.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « chrome/browser/sync/engine/syncer.h ('k') | chrome/browser/sync/engine/syncer_end_command.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698