| 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_SYNCABLE_WRITE_TRANSACTION_INFO_H_ | 5 #ifndef SYNC_SYNCABLE_WRITE_TRANSACTION_INFO_H_ |
| 6 #define SYNC_SYNCABLE_WRITE_TRANSACTION_INFO_H_ | 6 #define SYNC_SYNCABLE_WRITE_TRANSACTION_INFO_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "sync/syncable/base_transaction.h" | 9 #include "sync/syncable/base_transaction.h" |
| 10 #include "sync/syncable/entry_kernel.h" | 10 #include "sync/syncable/entry_kernel.h" |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 | 25 |
| 26 int64 id; | 26 int64 id; |
| 27 // If tracked_objects::Location becomes assignable, we can use that | 27 // If tracked_objects::Location becomes assignable, we can use that |
| 28 // instead. | 28 // instead. |
| 29 std::string location_string; | 29 std::string location_string; |
| 30 WriterTag writer; | 30 WriterTag writer; |
| 31 ImmutableEntryKernelMutationMap mutations; | 31 ImmutableEntryKernelMutationMap mutations; |
| 32 }; | 32 }; |
| 33 | 33 |
| 34 typedef | 34 typedef |
| 35 csync::Immutable<WriteTransactionInfo> | 35 syncer::Immutable<WriteTransactionInfo> |
| 36 ImmutableWriteTransactionInfo; | 36 ImmutableWriteTransactionInfo; |
| 37 | 37 |
| 38 } // namespace syncable | 38 } // namespace syncable |
| 39 | 39 |
| 40 #endif // SYNC_SYNCABLE_WRITE_TRANSACTION_INFO_H_ | 40 #endif // SYNC_SYNCABLE_WRITE_TRANSACTION_INFO_H_ |
| OLD | NEW |