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

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

Issue 2130453004: [Sync] Move //sync to //components/sync. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 4 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
(Empty)
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.
4
5 #include "sync/engine/directory_commit_contributor.h"
6
7 #include <stddef.h>
8
9 #include "sync/engine/directory_commit_contribution.h"
10 #include "sync/sessions/directory_type_debug_info_emitter.h"
11
12 namespace syncer {
13
14 DirectoryCommitContributor::DirectoryCommitContributor(
15 syncable::Directory* dir,
16 ModelType type,
17 DirectoryTypeDebugInfoEmitter* debug_info_emitter)
18 : dir_(dir),
19 type_(type),
20 debug_info_emitter_(debug_info_emitter) {}
21
22 DirectoryCommitContributor::~DirectoryCommitContributor() {}
23
24 std::unique_ptr<CommitContribution> DirectoryCommitContributor::GetContribution(
25 size_t max_entries) {
26 return DirectoryCommitContribution::Build(
27 dir_, type_, max_entries, debug_info_emitter_);
28 }
29
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