Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(256)

Side by Side Diff: components/sync/syncable/write_transaction_info.h

Issue 2130453004: [Sync] Move //sync to //components/sync. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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_WRITE_TRANSACTION_INFO_H_ 5 #ifndef COMPONENTS_SYNC_SYNCABLE_WRITE_TRANSACTION_INFO_H_
6 #define SYNC_SYNCABLE_WRITE_TRANSACTION_INFO_H_ 6 #define COMPONENTS_SYNC_SYNCABLE_WRITE_TRANSACTION_INFO_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
11 #include <string> 11 #include <string>
12 12
13 #include "sync/syncable/entry_kernel.h" 13 #include "components/sync/syncable/entry_kernel.h"
14 #include "sync/syncable/syncable_base_transaction.h" 14 #include "components/sync/syncable/syncable_base_transaction.h"
15 15
16 namespace syncer { 16 namespace syncer {
17 namespace syncable { 17 namespace syncable {
18 18
19 // A struct describing the changes made during a transaction. 19 // A struct describing the changes made during a transaction.
20 struct WriteTransactionInfo { 20 struct WriteTransactionInfo {
21 WriteTransactionInfo(int64_t id, 21 WriteTransactionInfo(int64_t id,
22 tracked_objects::Location location, 22 tracked_objects::Location location,
23 WriterTag writer, 23 WriterTag writer,
24 ImmutableEntryKernelMutationMap mutations); 24 ImmutableEntryKernelMutationMap mutations);
25 WriteTransactionInfo(); 25 WriteTransactionInfo();
26 WriteTransactionInfo(const WriteTransactionInfo& other); 26 WriteTransactionInfo(const WriteTransactionInfo& other);
27 ~WriteTransactionInfo(); 27 ~WriteTransactionInfo();
28 28
29 // Caller owns the return value. 29 // Caller owns the return value.
30 base::DictionaryValue* ToValue(size_t max_mutations_size) const; 30 base::DictionaryValue* ToValue(size_t max_mutations_size) const;
31 31
32 int64_t id; 32 int64_t id;
33 // If tracked_objects::Location becomes assignable, we can use that 33 // If tracked_objects::Location becomes assignable, we can use that
34 // instead. 34 // instead.
35 std::string location_string; 35 std::string location_string;
36 WriterTag writer; 36 WriterTag writer;
37 ImmutableEntryKernelMutationMap mutations; 37 ImmutableEntryKernelMutationMap mutations;
38 }; 38 };
39 39
40 typedef 40 typedef Immutable<WriteTransactionInfo> ImmutableWriteTransactionInfo;
41 Immutable<WriteTransactionInfo>
42 ImmutableWriteTransactionInfo;
43 41
44 } // namespace syncable 42 } // namespace syncable
45 } // namespace syncer 43 } // namespace syncer
46 44
47 #endif // SYNC_SYNCABLE_WRITE_TRANSACTION_INFO_H_ 45 #endif // COMPONENTS_SYNC_SYNCABLE_WRITE_TRANSACTION_INFO_H_
OLDNEW
« no previous file with comments | « components/sync/syncable/transaction_observer.h ('k') | components/sync/syncable/write_transaction_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698