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 "sync/engine/get_updates_processor.h" | 5 #include "sync/engine/get_updates_processor.h" |
6 | 6 |
7 #include <map> | 7 #include <map> |
8 | 8 |
9 #include "base/debug/trace_event.h" | 9 #include "base/trace_event/trace_event.h" |
10 #include "sync/engine/get_updates_delegate.h" | 10 #include "sync/engine/get_updates_delegate.h" |
11 #include "sync/engine/syncer_proto_util.h" | 11 #include "sync/engine/syncer_proto_util.h" |
12 #include "sync/engine/update_handler.h" | 12 #include "sync/engine/update_handler.h" |
13 #include "sync/internal_api/public/events/get_updates_response_event.h" | 13 #include "sync/internal_api/public/events/get_updates_response_event.h" |
14 #include "sync/protocol/sync.pb.h" | 14 #include "sync/protocol/sync.pb.h" |
15 #include "sync/sessions/status_controller.h" | 15 #include "sync/sessions/status_controller.h" |
16 #include "sync/sessions/sync_session.h" | 16 #include "sync/sessions/sync_session.h" |
17 #include "sync/syncable/directory.h" | 17 #include "sync/syncable/directory.h" |
18 #include "sync/syncable/nigori_handler.h" | 18 #include "sync/syncable/nigori_handler.h" |
19 #include "sync/syncable/syncable_read_transaction.h" | 19 #include "sync/syncable/syncable_read_transaction.h" |
(...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
363 } | 363 } |
364 | 364 |
365 void GetUpdatesProcessor::CopyClientDebugInfo( | 365 void GetUpdatesProcessor::CopyClientDebugInfo( |
366 sessions::DebugInfoGetter* debug_info_getter, | 366 sessions::DebugInfoGetter* debug_info_getter, |
367 sync_pb::DebugInfo* debug_info) { | 367 sync_pb::DebugInfo* debug_info) { |
368 DVLOG(1) << "Copying client debug info to send."; | 368 DVLOG(1) << "Copying client debug info to send."; |
369 debug_info_getter->GetDebugInfo(debug_info); | 369 debug_info_getter->GetDebugInfo(debug_info); |
370 } | 370 } |
371 | 371 |
372 } // namespace syncer | 372 } // namespace syncer |
OLD | NEW |