OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_SESSIONS_ORDERED_COMMIT_SET_H_ | 5 #ifndef SYNC_SESSIONS_ORDERED_COMMIT_SET_H_ |
6 #define SYNC_SESSIONS_ORDERED_COMMIT_SET_H_ | 6 #define SYNC_SESSIONS_ORDERED_COMMIT_SET_H_ |
7 #pragma once | |
8 | 7 |
9 #include <map> | 8 #include <map> |
10 #include <set> | 9 #include <set> |
11 #include <vector> | 10 #include <vector> |
12 | 11 |
13 #include "sync/internal_api/public/base/model_type.h" | 12 #include "sync/internal_api/public/base/model_type.h" |
14 #include "sync/internal_api/public/engine/model_safe_worker.h" | 13 #include "sync/internal_api/public/engine/model_safe_worker.h" |
15 #include "sync/syncable/syncable_id.h" | 14 #include "sync/syncable/syncable_id.h" |
16 | 15 |
17 namespace syncer { | 16 namespace syncer { |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 std::vector<syncer::ModelType> types_; | 115 std::vector<syncer::ModelType> types_; |
117 | 116 |
118 syncer::ModelSafeRoutingInfo routes_; | 117 syncer::ModelSafeRoutingInfo routes_; |
119 }; | 118 }; |
120 | 119 |
121 } // namespace sessions | 120 } // namespace sessions |
122 } // namespace syncer | 121 } // namespace syncer |
123 | 122 |
124 #endif // SYNC_SESSIONS_ORDERED_COMMIT_SET_H_ | 123 #endif // SYNC_SESSIONS_ORDERED_COMMIT_SET_H_ |
125 | 124 |
OLD | NEW |