| 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_GET_COMMIT_IDS_H_ | 5 #ifndef SYNC_ENGINE_GET_COMMIT_IDS_H_ |
| 6 #define SYNC_ENGINE_GET_COMMIT_IDS_H_ | 6 #define SYNC_ENGINE_GET_COMMIT_IDS_H_ |
| 7 | 7 |
| 8 #include <stddef.h> |
| 9 #include <stdint.h> |
| 10 |
| 8 #include <vector> | 11 #include <vector> |
| 9 | 12 |
| 10 #include "sync/base/sync_export.h" | 13 #include "sync/base/sync_export.h" |
| 11 #include "sync/internal_api/public/base/model_type.h" | 14 #include "sync/internal_api/public/base/model_type.h" |
| 12 #include "sync/syncable/directory.h" | 15 #include "sync/syncable/directory.h" |
| 13 | 16 |
| 14 using std::vector; | 17 using std::vector; |
| 15 | 18 |
| 16 namespace syncer { | 19 namespace syncer { |
| 17 | 20 |
| 18 namespace syncable { | 21 namespace syncable { |
| 19 class BaseTransaction; | 22 class BaseTransaction; |
| 20 } | 23 } |
| 21 | 24 |
| 22 // Returns up to |max_entries| metahandles of entries that belong to the | 25 // Returns up to |max_entries| metahandles of entries that belong to the |
| 23 // specified |type| and are ready for commit. | 26 // specified |type| and are ready for commit. |
| 24 // | 27 // |
| 25 // This function returns handles in "commit order". A valid commit ordering is | 28 // This function returns handles in "commit order". A valid commit ordering is |
| 26 // one where server-unknown items are committed parents-first, and deletions | 29 // one where server-unknown items are committed parents-first, and deletions |
| 27 // are committed children-first. | 30 // are committed children-first. |
| 28 // | 31 // |
| 29 // This function also enforces some position ordering constraints that are no | 32 // This function also enforces some position ordering constraints that are no |
| 30 // longer necessary. We should relax those constraints. See crbug.com/287938. | 33 // longer necessary. We should relax those constraints. See crbug.com/287938. |
| 31 SYNC_EXPORT void GetCommitIdsForType(syncable::BaseTransaction* trans, | 34 SYNC_EXPORT void GetCommitIdsForType(syncable::BaseTransaction* trans, |
| 32 ModelType type, | 35 ModelType type, |
| 33 size_t max_entries, | 36 size_t max_entries, |
| 34 std::vector<int64>* out); | 37 std::vector<int64_t>* out); |
| 35 | 38 |
| 36 } // namespace syncer | 39 } // namespace syncer |
| 37 | 40 |
| 38 #endif // SYNC_ENGINE_GET_COMMIT_IDS_H_ | 41 #endif // SYNC_ENGINE_GET_COMMIT_IDS_H_ |
| OLD | NEW |