| Index: sync/engine/directory_commit_contributor.h
|
| diff --git a/sync/engine/directory_commit_contributor.h b/sync/engine/directory_commit_contributor.h
|
| index abc1a6c6fd7742ff879fa9c59bd83c20ef32dcde..a1c91047209f45e4002a2b203d980fffa092da7f 100644
|
| --- a/sync/engine/directory_commit_contributor.h
|
| +++ b/sync/engine/directory_commit_contributor.h
|
| @@ -18,6 +18,8 @@ namespace syncable {
|
| class Directory;
|
| }
|
|
|
| +class DirectoryTypeDebugInfoEmitter;
|
| +
|
| // This class represents the syncable::Directory as a source of items to commit
|
| // to the sync server.
|
| //
|
| @@ -27,7 +29,9 @@ class Directory;
|
| // of a DirectoryCommitContribution.
|
| class DirectoryCommitContributor : public CommitContributor {
|
| public:
|
| - DirectoryCommitContributor(syncable::Directory* dir, ModelType type);
|
| + DirectoryCommitContributor(syncable::Directory* dir,
|
| + ModelType type,
|
| + DirectoryTypeDebugInfoEmitter* debug_info_emitter);
|
| virtual ~DirectoryCommitContributor();
|
|
|
| virtual scoped_ptr<CommitContribution> GetContribution(
|
| @@ -37,6 +41,8 @@ class DirectoryCommitContributor : public CommitContributor {
|
| syncable::Directory* dir_;
|
| ModelType type_;
|
|
|
| + DirectoryTypeDebugInfoEmitter* debug_info_emitter_;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(DirectoryCommitContributor);
|
| };
|
|
|
|
|