| 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_COMMIT_UTIL_H_ | 5 #ifndef COMPONENTS_SYNC_ENGINE_IMPL_COMMIT_UTIL_H_ |
| 6 #define SYNC_ENGINE_COMMIT_UTIL_H_ | 6 #define COMPONENTS_SYNC_ENGINE_IMPL_COMMIT_UTIL_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <set> | 10 #include <set> |
| 11 | 11 |
| 12 #include "sync/base/sync_export.h" | 12 #include "components/sync/base/extensions_activity.h" |
| 13 #include "sync/internal_api/public/base/model_type.h" | 13 #include "components/sync/base/model_type.h" |
| 14 #include "sync/protocol/sync.pb.h" | 14 #include "components/sync/base/sync_export.h" |
| 15 #include "sync/util/extensions_activity.h" | 15 #include "components/sync/protocol/sync.pb.h" |
| 16 | 16 |
| 17 namespace sync_pb { | 17 namespace sync_pb { |
| 18 class CommitMessage; | 18 class CommitMessage; |
| 19 class SyncEntity; | 19 class SyncEntity; |
| 20 } | 20 } |
| 21 | 21 |
| 22 namespace syncer { | 22 namespace syncer { |
| 23 | 23 |
| 24 namespace syncable { | 24 namespace syncable { |
| 25 class BaseTransaction; | 25 class BaseTransaction; |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 syncable::BaseWriteTransaction* trans, | 58 syncable::BaseWriteTransaction* trans, |
| 59 const sync_pb::CommitResponse_EntryResponse& server_entry, | 59 const sync_pb::CommitResponse_EntryResponse& server_entry, |
| 60 const sync_pb::SyncEntity& commit_request_entry, | 60 const sync_pb::SyncEntity& commit_request_entry, |
| 61 int64_t metahandle, | 61 int64_t metahandle, |
| 62 std::set<syncable::Id>* deleted_folders); | 62 std::set<syncable::Id>* deleted_folders); |
| 63 | 63 |
| 64 } // namespace commit_util | 64 } // namespace commit_util |
| 65 | 65 |
| 66 } // namespace syncer | 66 } // namespace syncer |
| 67 | 67 |
| 68 #endif // SYNC_ENGINE_COMMIT_UTIL_H_ | 68 #endif // COMPONENTS_SYNC_ENGINE_IMPL_COMMIT_UTIL_H_ |
| OLD | NEW |