OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #ifndef SYNC_ENGINE_SYNC_DIRECTORY_COMMIT_CONTRIBUTOR_H_ | 5 #ifndef SYNC_ENGINE_SYNC_DIRECTORY_COMMIT_CONTRIBUTOR_H_ |
6 #define SYNC_ENGINE_SYNC_DIRECTORY_COMMIT_CONTRIBUTOR_H_ | 6 #define SYNC_ENGINE_SYNC_DIRECTORY_COMMIT_CONTRIBUTOR_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 | 9 |
10 #include "sync/internal_api/public/base/model_type.h" | 10 #include "sync/internal_api/public/base/model_type.h" |
(...skipping 18 matching lines...) Expand all Loading... |
29 SyncDirectoryCommitContributor(syncable::Directory* dir, ModelType type); | 29 SyncDirectoryCommitContributor(syncable::Directory* dir, ModelType type); |
30 ~SyncDirectoryCommitContributor(); | 30 ~SyncDirectoryCommitContributor(); |
31 | 31 |
32 SyncDirectoryCommitContribution* GetContribution(size_t max_entries); | 32 SyncDirectoryCommitContribution* GetContribution(size_t max_entries); |
33 | 33 |
34 private: | 34 private: |
35 syncable::Directory* dir_; | 35 syncable::Directory* dir_; |
36 ModelType type_; | 36 ModelType type_; |
37 }; | 37 }; |
38 | 38 |
39 // TODO(rlarocque): Find a better place for this definition. | |
40 typedef std::map<ModelType, SyncDirectoryCommitContributor*> | |
41 CommitContributorMap; | |
42 | |
43 } // namespace | 39 } // namespace |
44 | 40 |
45 #endif // SYNC_ENGINE_SYNC_DIRECTORY_COMMIT_CONTRIBUTOR_H_ | 41 #endif // SYNC_ENGINE_SYNC_DIRECTORY_COMMIT_CONTRIBUTOR_H_ |
OLD | NEW |