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

Side by Side Diff: components/sync/engine_impl/get_updates_processor.cc

Issue 2436863005: [Sync] Move events files around a bit. (Closed)
Patch Set: Rebase. Created 4 years, 2 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
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698