Popular sites on the NTP: check that experiment group StartsWith (rather than IS...
[chromium-blink-merge.git] / sync / engine / directory_commit_contributor.cc
blobf6c27263d8f6e29f0f85f5f31a30fc4454b97bff
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
3 // found in the LICENSE file.
5 #include "sync/engine/directory_commit_contributor.h"
7 #include "sync/engine/directory_commit_contribution.h"
8 #include "sync/sessions/directory_type_debug_info_emitter.h"
10 namespace syncer {
12 DirectoryCommitContributor::DirectoryCommitContributor(
13 syncable::Directory* dir,
14 ModelType type,
15 DirectoryTypeDebugInfoEmitter* debug_info_emitter)
16 : dir_(dir),
17 type_(type),
18 debug_info_emitter_(debug_info_emitter) {}
20 DirectoryCommitContributor::~DirectoryCommitContributor() {}
22 scoped_ptr<CommitContribution>
23 DirectoryCommitContributor::GetContribution(size_t max_entries) {
24 return DirectoryCommitContribution::Build(
25 dir_, type_, max_entries, debug_info_emitter_);
28 } // namespace syncer