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

Side by Side Diff: sync/engine/download_updates_command.cc

Issue 9699057: [Sync] Move 'sync' target to sync/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address Tim's comments Created 8 years, 9 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) 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 "chrome/browser/sync/engine/download_updates_command.h" 5 #include "sync/engine/download_updates_command.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/command_line.h" 9 #include "base/command_line.h"
10 #include "chrome/browser/sync/engine/syncer.h" 10 #include "sync/engine/syncer.h"
11 #include "chrome/browser/sync/engine/syncer_proto_util.h" 11 #include "sync/engine/syncer_proto_util.h"
12 #include "chrome/browser/sync/engine/syncproto.h" 12 #include "sync/engine/syncproto.h"
13 #include "chrome/browser/sync/syncable/model_type_payload_map.h" 13 #include "sync/syncable/model_type_payload_map.h"
14 #include "chrome/browser/sync/syncable/syncable.h" 14 #include "sync/syncable/syncable.h"
15 15
16 using sync_pb::DebugInfo; 16 using sync_pb::DebugInfo;
17 17
18 namespace browser_sync { 18 namespace browser_sync {
19 using sessions::StatusController; 19 using sessions::StatusController;
20 using sessions::SyncSession; 20 using sessions::SyncSession;
21 using std::string; 21 using std::string;
22 using syncable::FIRST_REAL_MODEL_TYPE; 22 using syncable::FIRST_REAL_MODEL_TYPE;
23 using syncable::MODEL_TYPE_COUNT; 23 using syncable::MODEL_TYPE_COUNT;
24 using syncable::ModelTypeSet; 24 using syncable::ModelTypeSet;
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 if (session->context()->debug_info_getter()) { 121 if (session->context()->debug_info_getter()) {
122 session->context()->debug_info_getter()->GetAndClearDebugInfo( 122 session->context()->debug_info_getter()->GetAndClearDebugInfo(
123 debug_info); 123 debug_info);
124 } 124 }
125 session->mutable_status_controller()->set_debug_info_sent(); 125 session->mutable_status_controller()->set_debug_info_sent();
126 } 126 }
127 } 127 }
128 128
129 129
130 } // namespace browser_sync 130 } // namespace browser_sync
OLDNEW
« no previous file with comments | « sync/engine/download_updates_command.h ('k') | sync/engine/download_updates_command_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698