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

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

Issue 1545553003: Switch to standard integer types in sync/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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
« no previous file with comments | « sync/engine/get_updates_processor.h ('k') | sync/engine/get_updates_processor_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "sync/engine/get_updates_processor.h" 5 #include "sync/engine/get_updates_processor.h"
6 6
7 #include <stddef.h>
8
7 #include <map> 9 #include <map>
8 10
9 #include "base/trace_event/trace_event.h" 11 #include "base/trace_event/trace_event.h"
10 #include "sync/engine/get_updates_delegate.h" 12 #include "sync/engine/get_updates_delegate.h"
11 #include "sync/engine/syncer_proto_util.h" 13 #include "sync/engine/syncer_proto_util.h"
12 #include "sync/engine/update_handler.h" 14 #include "sync/engine/update_handler.h"
13 #include "sync/internal_api/public/events/get_updates_response_event.h" 15 #include "sync/internal_api/public/events/get_updates_response_event.h"
14 #include "sync/protocol/sync.pb.h" 16 #include "sync/protocol/sync.pb.h"
15 #include "sync/sessions/status_controller.h" 17 #include "sync/sessions/status_controller.h"
16 #include "sync/sessions/sync_session.h" 18 #include "sync/sessions/sync_session.h"
(...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after
372 } 374 }
373 375
374 void GetUpdatesProcessor::CopyClientDebugInfo( 376 void GetUpdatesProcessor::CopyClientDebugInfo(
375 sessions::DebugInfoGetter* debug_info_getter, 377 sessions::DebugInfoGetter* debug_info_getter,
376 sync_pb::DebugInfo* debug_info) { 378 sync_pb::DebugInfo* debug_info) {
377 DVLOG(1) << "Copying client debug info to send."; 379 DVLOG(1) << "Copying client debug info to send.";
378 debug_info_getter->GetDebugInfo(debug_info); 380 debug_info_getter->GetDebugInfo(debug_info);
379 } 381 }
380 382
381 } // namespace syncer 383 } // namespace syncer
OLDNEW
« no previous file with comments | « sync/engine/get_updates_processor.h ('k') | sync/engine/get_updates_processor_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698