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

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

Issue 1545553003: Switch to standard integer types in sync/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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
« no previous file with comments | « sync/engine/directory_commit_contributor.h ('k') | sync/engine/directory_update_handler.h » ('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/directory_commit_contributor.h" 5 #include "sync/engine/directory_commit_contributor.h"
6 6
7 #include <stddef.h>
8
7 #include "sync/engine/directory_commit_contribution.h" 9 #include "sync/engine/directory_commit_contribution.h"
8 #include "sync/sessions/directory_type_debug_info_emitter.h" 10 #include "sync/sessions/directory_type_debug_info_emitter.h"
9 11
10 namespace syncer { 12 namespace syncer {
11 13
12 DirectoryCommitContributor::DirectoryCommitContributor( 14 DirectoryCommitContributor::DirectoryCommitContributor(
13 syncable::Directory* dir, 15 syncable::Directory* dir,
14 ModelType type, 16 ModelType type,
15 DirectoryTypeDebugInfoEmitter* debug_info_emitter) 17 DirectoryTypeDebugInfoEmitter* debug_info_emitter)
16 : dir_(dir), 18 : dir_(dir),
17 type_(type), 19 type_(type),
18 debug_info_emitter_(debug_info_emitter) {} 20 debug_info_emitter_(debug_info_emitter) {}
19 21
20 DirectoryCommitContributor::~DirectoryCommitContributor() {} 22 DirectoryCommitContributor::~DirectoryCommitContributor() {}
21 23
22 scoped_ptr<CommitContribution> 24 scoped_ptr<CommitContribution>
23 DirectoryCommitContributor::GetContribution(size_t max_entries) { 25 DirectoryCommitContributor::GetContribution(size_t max_entries) {
24 return DirectoryCommitContribution::Build( 26 return DirectoryCommitContribution::Build(
25 dir_, type_, max_entries, debug_info_emitter_); 27 dir_, type_, max_entries, debug_info_emitter_);
26 } 28 }
27 29
28 } // namespace syncer 30 } // namespace syncer
OLDNEW
« no previous file with comments | « sync/engine/directory_commit_contributor.h ('k') | sync/engine/directory_update_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698