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/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 |
OLD | NEW |