| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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 <set> | 8 #include <set> |
| 9 | 9 |
| 10 #include "base/time.h" | 10 #include "base/time/time.h" |
| 11 #include "base/values.h" | 11 #include "base/values.h" |
| 12 #include "sync/base/sync_export.h" | 12 #include "sync/base/sync_export.h" |
| 13 #include "sync/internal_api/public/base/model_type.h" | 13 #include "sync/internal_api/public/base/model_type.h" |
| 14 #include "sync/internal_api/public/base/unique_position.h" | 14 #include "sync/internal_api/public/base/unique_position.h" |
| 15 #include "sync/internal_api/public/util/immutable.h" | 15 #include "sync/internal_api/public/util/immutable.h" |
| 16 #include "sync/protocol/sync.pb.h" | 16 #include "sync/protocol/sync.pb.h" |
| 17 #include "sync/syncable/metahandle_set.h" | 17 #include "sync/syncable/metahandle_set.h" |
| 18 #include "sync/syncable/syncable_id.h" | 18 #include "sync/syncable/syncable_id.h" |
| 19 #include "sync/util/time.h" | 19 #include "sync/util/time.h" |
| 20 | 20 |
| (...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 349 const EntryKernelMutation& mutation); | 349 const EntryKernelMutation& mutation); |
| 350 | 350 |
| 351 // Caller owns the return value. | 351 // Caller owns the return value. |
| 352 base::ListValue* EntryKernelMutationMapToValue( | 352 base::ListValue* EntryKernelMutationMapToValue( |
| 353 const EntryKernelMutationMap& mutations); | 353 const EntryKernelMutationMap& mutations); |
| 354 | 354 |
| 355 } // namespace syncable | 355 } // namespace syncable |
| 356 } // namespace syncer | 356 } // namespace syncer |
| 357 | 357 |
| 358 #endif // SYNC_SYNCABLE_ENTRY_KERNEL_H_ | 358 #endif // SYNC_SYNCABLE_ENTRY_KERNEL_H_ |
| OLD | NEW |