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/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 "sync/engine/syncer.h" | 10 #include "sync/engine/syncer.h" |
11 #include "sync/engine/syncer_proto_util.h" | 11 #include "sync/engine/syncer_proto_util.h" |
12 #include "sync/internal_api/public/base/model_type_state_map.h" | 12 #include "sync/internal_api/public/base/model_type_state_map.h" |
13 #include "sync/syncable/directory.h" | 13 #include "sync/syncable/directory.h" |
14 #include "sync/syncable/read_transaction.h" | 14 #include "sync/syncable/read_transaction.h" |
| 15 #include "sync/util/cryptographer.h" |
15 | 16 |
16 using sync_pb::DebugInfo; | 17 using sync_pb::DebugInfo; |
17 | 18 |
18 namespace syncer { | 19 namespace syncer { |
19 using sessions::StatusController; | 20 using sessions::StatusController; |
20 using sessions::SyncSession; | 21 using sessions::SyncSession; |
21 using std::string; | 22 using std::string; |
22 | 23 |
23 DownloadUpdatesCommand::DownloadUpdatesCommand( | 24 DownloadUpdatesCommand::DownloadUpdatesCommand( |
24 bool create_mobile_bookmarks_folder) | 25 bool create_mobile_bookmarks_folder) |
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
157 // could be null in some unit tests. | 158 // could be null in some unit tests. |
158 if (session->context()->debug_info_getter()) { | 159 if (session->context()->debug_info_getter()) { |
159 session->context()->debug_info_getter()->GetAndClearDebugInfo( | 160 session->context()->debug_info_getter()->GetAndClearDebugInfo( |
160 debug_info); | 161 debug_info); |
161 } | 162 } |
162 session->mutable_status_controller()->set_debug_info_sent(); | 163 session->mutable_status_controller()->set_debug_info_sent(); |
163 } | 164 } |
164 } | 165 } |
165 | 166 |
166 } // namespace syncer | 167 } // namespace syncer |
OLD | NEW |