| 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_ENTRY_KERNEL_H_ | 5 #ifndef SYNC_SYNCABLE_ENTRY_KERNEL_H_ |
| 6 #define SYNC_SYNCABLE_ENTRY_KERNEL_H_ | 6 #define SYNC_SYNCABLE_ENTRY_KERNEL_H_ |
| 7 | 7 |
| 8 #include "base/time.h" | 8 #include "base/time.h" |
| 9 #include "base/values.h" | 9 #include "base/values.h" |
| 10 #include "sync/internal_api/public/base/model_type.h" | 10 #include "sync/internal_api/public/base/model_type.h" |
| 11 #include "sync/internal_api/public/util/immutable.h" | 11 #include "sync/internal_api/public/util/immutable.h" |
| 12 #include "sync/internal_api/public/util/time.h" |
| 12 #include "sync/protocol/sync.pb.h" | 13 #include "sync/protocol/sync.pb.h" |
| 13 #include "sync/syncable/metahandle_set.h" | 14 #include "sync/syncable/metahandle_set.h" |
| 14 #include "sync/syncable/syncable_id.h" | 15 #include "sync/syncable/syncable_id.h" |
| 15 #include "sync/util/time.h" | |
| 16 | 16 |
| 17 namespace syncer { | 17 namespace syncer { |
| 18 namespace syncable { | 18 namespace syncable { |
| 19 | 19 |
| 20 // Things you need to update if you change any of the fields below: | 20 // Things you need to update if you change any of the fields below: |
| 21 // - EntryKernel struct in this file | 21 // - EntryKernel struct in this file |
| 22 // - syncable_columns.h | 22 // - syncable_columns.h |
| 23 // - syncable_enum_conversions{.h,.cc,_unittest.cc} | 23 // - syncable_enum_conversions{.h,.cc,_unittest.cc} |
| 24 // - EntryKernel::EntryKernel(), EntryKernel::ToValue(), operator<< | 24 // - EntryKernel::EntryKernel(), EntryKernel::ToValue(), operator<< |
| 25 // for Entry in syncable.cc | 25 // for Entry in syncable.cc |
| (...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 313 const EntryKernelMutation& mutation); | 313 const EntryKernelMutation& mutation); |
| 314 | 314 |
| 315 // Caller owns the return value. | 315 // Caller owns the return value. |
| 316 base::ListValue* EntryKernelMutationMapToValue( | 316 base::ListValue* EntryKernelMutationMapToValue( |
| 317 const EntryKernelMutationMap& mutations); | 317 const EntryKernelMutationMap& mutations); |
| 318 | 318 |
| 319 } // namespace syncable | 319 } // namespace syncable |
| 320 } // namespace syncer | 320 } // namespace syncer |
| 321 | 321 |
| 322 #endif // SYNC_SYNCABLE_ENTRY_KERNEL_H_ | 322 #endif // SYNC_SYNCABLE_ENTRY_KERNEL_H_ |
| OLD | NEW |