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