| 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 "sync/engine/directory_commit_contribution.h" | 7 #include "sync/engine/directory_commit_contribution.h" |
| 8 #include "sync/sessions/directory_type_debug_info_emitter.h" | 8 #include "sync/sessions/directory_type_debug_info_emitter.h" |
| 9 | 9 |
| 10 namespace syncer { | 10 namespace syncer { |
| 11 | 11 |
| 12 DirectoryCommitContributor::DirectoryCommitContributor( | 12 DirectoryCommitContributor::DirectoryCommitContributor( |
| 13 syncable::Directory* dir, | 13 syncable::Directory* dir, |
| 14 ModelType type, | 14 ModelType type, |
| 15 DirectoryTypeDebugInfoEmitter* debug_info_emitter) | 15 DirectoryTypeDebugInfoEmitter* debug_info_emitter) |
| 16 : dir_(dir), | 16 : dir_(dir), |
| 17 type_(type), | 17 type_(type), |
| 18 debug_info_emitter_(debug_info_emitter) {} | 18 debug_info_emitter_(debug_info_emitter) {} |
| 19 | 19 |
| 20 DirectoryCommitContributor::~DirectoryCommitContributor() {} | 20 DirectoryCommitContributor::~DirectoryCommitContributor() {} |
| 21 | 21 |
| 22 scoped_ptr<CommitContribution> | 22 scoped_ptr<CommitContribution> |
| 23 DirectoryCommitContributor::GetContribution(size_t max_entries) { | 23 DirectoryCommitContributor::GetContribution(size_t max_entries) { |
| 24 return DirectoryCommitContribution::Build( | 24 return DirectoryCommitContribution::Build( |
| 25 dir_, | 25 dir_, type_, max_entries, debug_info_emitter_); |
| 26 type_, | |
| 27 max_entries, | |
| 28 debug_info_emitter_).PassAs<CommitContribution>(); | |
| 29 } | 26 } |
| 30 | 27 |
| 31 } // namespace syncer | 28 } // namespace syncer |
| OLD | NEW |