| 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 COMPONENTS_SYNC_CORE_BASE_NODE_H_ | 5 #ifndef COMPONENTS_SYNC_SYNCABLE_BASE_NODE_H_ |
| 6 #define COMPONENTS_SYNC_CORE_BASE_NODE_H_ | 6 #define COMPONENTS_SYNC_SYNCABLE_BASE_NODE_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| 11 #include <memory> | 11 #include <memory> |
| 12 #include <string> | 12 #include <string> |
| 13 #include <vector> | 13 #include <vector> |
| 14 | 14 |
| 15 #include "base/gtest_prod_util.h" | 15 #include "base/gtest_prod_util.h" |
| 16 #include "base/macros.h" | 16 #include "base/macros.h" |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 233 sync_pb::EntitySpecifics unencrypted_data_; | 233 sync_pb::EntitySpecifics unencrypted_data_; |
| 234 | 234 |
| 235 // Same as |unencrypted_data_|, but for legacy password encryption. | 235 // Same as |unencrypted_data_|, but for legacy password encryption. |
| 236 std::unique_ptr<sync_pb::PasswordSpecificsData> password_data_; | 236 std::unique_ptr<sync_pb::PasswordSpecificsData> password_data_; |
| 237 | 237 |
| 238 DISALLOW_COPY_AND_ASSIGN(BaseNode); | 238 DISALLOW_COPY_AND_ASSIGN(BaseNode); |
| 239 }; | 239 }; |
| 240 | 240 |
| 241 } // namespace syncer | 241 } // namespace syncer |
| 242 | 242 |
| 243 #endif // COMPONENTS_SYNC_CORE_BASE_NODE_H_ | 243 #endif // COMPONENTS_SYNC_SYNCABLE_BASE_NODE_H_ |
| OLD | NEW |