| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_TEST_FAKE_SERVER_UNIQUE_CLIENT_ENTITY_H_ | 5 #ifndef COMPONENTS_SYNC_TEST_FAKE_SERVER_UNIQUE_CLIENT_ENTITY_H_ |
| 6 #define SYNC_TEST_FAKE_SERVER_UNIQUE_CLIENT_ENTITY_H_ | 6 #define COMPONENTS_SYNC_TEST_FAKE_SERVER_UNIQUE_CLIENT_ENTITY_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| 11 #include <string> | 11 #include <string> |
| 12 | 12 |
| 13 #include "sync/internal_api/public/base/model_type.h" | 13 #include "components/sync/base/model_type.h" |
| 14 #include "sync/test/fake_server/fake_server_entity.h" | 14 #include "components/sync/test/fake_server/fake_server_entity.h" |
| 15 | 15 |
| 16 namespace sync_pb { | 16 namespace sync_pb { |
| 17 class EntitySpecifics; | 17 class EntitySpecifics; |
| 18 class SyncEntity; | 18 class SyncEntity; |
| 19 } // namespace sync_pb | 19 } // namespace sync_pb |
| 20 | 20 |
| 21 namespace fake_server { | 21 namespace fake_server { |
| 22 | 22 |
| 23 // An entity that is unique per client account. | 23 // An entity that is unique per client account. |
| 24 // | 24 // |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 | 59 |
| 60 private: | 60 private: |
| 61 // These member values have equivalent fields in SyncEntity. | 61 // These member values have equivalent fields in SyncEntity. |
| 62 std::string client_defined_unique_tag_; | 62 std::string client_defined_unique_tag_; |
| 63 int64_t creation_time_; | 63 int64_t creation_time_; |
| 64 int64_t last_modified_time_; | 64 int64_t last_modified_time_; |
| 65 }; | 65 }; |
| 66 | 66 |
| 67 } // namespace fake_server | 67 } // namespace fake_server |
| 68 | 68 |
| 69 #endif // SYNC_TEST_FAKE_SERVER_UNIQUE_CLIENT_ENTITY_H_ | 69 #endif // COMPONENTS_SYNC_TEST_FAKE_SERVER_UNIQUE_CLIENT_ENTITY_H_ |
| OLD | NEW |