OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 CHROME_BROWSER_SYNC_INTERNAL_API_WRITE_NODE_H_ | 5 #ifndef CHROME_BROWSER_SYNC_INTERNAL_API_WRITE_NODE_H_ |
6 #define CHROME_BROWSER_SYNC_INTERNAL_API_WRITE_NODE_H_ | 6 #define CHROME_BROWSER_SYNC_INTERNAL_API_WRITE_NODE_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 14 matching lines...) Expand all Loading... |
25 | 25 |
26 namespace sync_pb { | 26 namespace sync_pb { |
27 class AppSpecifics; | 27 class AppSpecifics; |
28 class AutofillSpecifics; | 28 class AutofillSpecifics; |
29 class AutofillProfileSpecifics; | 29 class AutofillProfileSpecifics; |
30 class BookmarkSpecifics; | 30 class BookmarkSpecifics; |
31 class EntitySpecifics; | 31 class EntitySpecifics; |
32 class ExtensionSpecifics; | 32 class ExtensionSpecifics; |
33 class SessionSpecifics; | 33 class SessionSpecifics; |
34 class NigoriSpecifics; | 34 class NigoriSpecifics; |
35 class PreferenceSpecifics; | |
36 class PasswordSpecificsData; | 35 class PasswordSpecificsData; |
37 class ThemeSpecifics; | 36 class ThemeSpecifics; |
38 class TypedUrlSpecifics; | 37 class TypedUrlSpecifics; |
39 } | 38 } |
40 | 39 |
41 namespace sync_api { | 40 namespace sync_api { |
42 | 41 |
43 class WriteTransaction; | 42 class WriteTransaction; |
44 | 43 |
45 // WriteNode extends BaseNode to add mutation, and wraps | 44 // WriteNode extends BaseNode to add mutation, and wraps |
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
188 | 187 |
189 // The sync API transaction that is the parent of this node. | 188 // The sync API transaction that is the parent of this node. |
190 WriteTransaction* transaction_; | 189 WriteTransaction* transaction_; |
191 | 190 |
192 DISALLOW_COPY_AND_ASSIGN(WriteNode); | 191 DISALLOW_COPY_AND_ASSIGN(WriteNode); |
193 }; | 192 }; |
194 | 193 |
195 } // namespace sync_api | 194 } // namespace sync_api |
196 | 195 |
197 #endif // CHROME_BROWSER_SYNC_INTERNAL_API_WRITE_NODE_H_ | 196 #endif // CHROME_BROWSER_SYNC_INTERNAL_API_WRITE_NODE_H_ |
OLD | NEW |