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

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

Issue 7879006: Delete Tracked, and move Location to its own file. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased Created 9 years, 3 months 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 | Annotate | Revision Log
OLDNEW
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
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
OLDNEW
« no previous file with comments | « chrome/browser/sync/engine/sync_scheduler.cc ('k') | chrome/browser/sync/engine/syncer_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698