| 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_INTERNAL_API_PUBLIC_WRITE_NODE_H_ | 5 #ifndef COMPONENTS_SYNC_CORE_WRITE_NODE_H_ |
| 6 #define SYNC_INTERNAL_API_PUBLIC_WRITE_NODE_H_ | 6 #define COMPONENTS_SYNC_CORE_WRITE_NODE_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 #include <vector> | 12 #include <vector> |
| 13 | 13 |
| 14 #include "base/compiler_specific.h" | 14 #include "base/compiler_specific.h" |
| 15 #include "base/gtest_prod_util.h" | 15 #include "base/gtest_prod_util.h" |
| 16 #include "base/macros.h" | 16 #include "base/macros.h" |
| 17 #include "sync/base/sync_export.h" | 17 #include "components/sync/base/model_type.h" |
| 18 #include "sync/internal_api/public/base/model_type.h" | 18 #include "components/sync/base/sync_export.h" |
| 19 #include "sync/internal_api/public/base_node.h" | 19 #include "components/sync/core/base_node.h" |
| 20 | 20 |
| 21 namespace sync_pb { | 21 namespace sync_pb { |
| 22 class BookmarkSpecifics; | 22 class BookmarkSpecifics; |
| 23 class EntitySpecifics; | 23 class EntitySpecifics; |
| 24 class NigoriSpecifics; | 24 class NigoriSpecifics; |
| 25 class PasswordSpecificsData; | 25 class PasswordSpecificsData; |
| 26 class TypedUrlSpecifics; | 26 class TypedUrlSpecifics; |
| 27 } | 27 } |
| 28 | 28 |
| 29 namespace syncer { | 29 namespace syncer { |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 syncable::MutableEntry* entry_; | 173 syncable::MutableEntry* entry_; |
| 174 | 174 |
| 175 // The sync API transaction that is the parent of this node. | 175 // The sync API transaction that is the parent of this node. |
| 176 WriteTransaction* transaction_; | 176 WriteTransaction* transaction_; |
| 177 | 177 |
| 178 DISALLOW_COPY_AND_ASSIGN(WriteNode); | 178 DISALLOW_COPY_AND_ASSIGN(WriteNode); |
| 179 }; | 179 }; |
| 180 | 180 |
| 181 } // namespace syncer | 181 } // namespace syncer |
| 182 | 182 |
| 183 #endif // SYNC_INTERNAL_API_PUBLIC_WRITE_NODE_H_ | 183 #endif // COMPONENTS_SYNC_CORE_WRITE_NODE_H_ |
| OLD | NEW |