OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "components/sync/engine_impl/get_updates_processor.h" | 5 #include "components/sync/engine_impl/get_updates_processor.h" |
6 | 6 |
7 #include <stddef.h> | 7 #include <stddef.h> |
8 | 8 |
9 #include <utility> | 9 #include <utility> |
10 | 10 |
11 #include "base/trace_event/trace_event.h" | 11 #include "base/trace_event/trace_event.h" |
12 #include "components/sync/engine/events/get_updates_response_event.h" | |
13 #include "components/sync/engine_impl/cycle/status_controller.h" | 12 #include "components/sync/engine_impl/cycle/status_controller.h" |
14 #include "components/sync/engine_impl/cycle/sync_cycle.h" | 13 #include "components/sync/engine_impl/cycle/sync_cycle.h" |
| 14 #include "components/sync/engine_impl/events/get_updates_response_event.h" |
15 #include "components/sync/engine_impl/get_updates_delegate.h" | 15 #include "components/sync/engine_impl/get_updates_delegate.h" |
16 #include "components/sync/engine_impl/syncer_proto_util.h" | 16 #include "components/sync/engine_impl/syncer_proto_util.h" |
17 #include "components/sync/engine_impl/update_handler.h" | 17 #include "components/sync/engine_impl/update_handler.h" |
18 #include "components/sync/syncable/directory.h" | 18 #include "components/sync/syncable/directory.h" |
19 #include "components/sync/syncable/nigori_handler.h" | 19 #include "components/sync/syncable/nigori_handler.h" |
20 #include "components/sync/syncable/syncable_read_transaction.h" | 20 #include "components/sync/syncable/syncable_read_transaction.h" |
21 | 21 |
22 namespace syncer { | 22 namespace syncer { |
23 | 23 |
24 namespace { | 24 namespace { |
(...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
360 } | 360 } |
361 | 361 |
362 void GetUpdatesProcessor::CopyClientDebugInfo( | 362 void GetUpdatesProcessor::CopyClientDebugInfo( |
363 DebugInfoGetter* debug_info_getter, | 363 DebugInfoGetter* debug_info_getter, |
364 sync_pb::DebugInfo* debug_info) { | 364 sync_pb::DebugInfo* debug_info) { |
365 DVLOG(1) << "Copying client debug info to send."; | 365 DVLOG(1) << "Copying client debug info to send."; |
366 debug_info_getter->GetDebugInfo(debug_info); | 366 debug_info_getter->GetDebugInfo(debug_info); |
367 } | 367 } |
368 | 368 |
369 } // namespace syncer | 369 } // namespace syncer |
OLD | NEW |