| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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_TEST_TEST_ENTRY_FACTORY_H_ | 5 #ifndef COMPONENTS_SYNC_CORE_TEST_TEST_ENTRY_FACTORY_H_ |
| 6 #define SYNC_INTERNAL_API_PUBLIC_TEST_TEST_ENTRY_FACTORY_H_ | 6 #define COMPONENTS_SYNC_CORE_TEST_TEST_ENTRY_FACTORY_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <string> | 10 #include <string> |
| 11 | 11 |
| 12 #include "base/macros.h" | 12 #include "base/macros.h" |
| 13 #include "sync/internal_api/public/base/model_type.h" | 13 #include "components/sync/base/model_type.h" |
| 14 #include "sync/protocol/sync.pb.h" | 14 #include "components/sync/protocol/sync.pb.h" |
| 15 | 15 |
| 16 namespace syncer { | 16 namespace syncer { |
| 17 | 17 |
| 18 namespace syncable { | 18 namespace syncable { |
| 19 class Directory; | 19 class Directory; |
| 20 class Id; | 20 class Id; |
| 21 } | 21 } |
| 22 | 22 |
| 23 class TestEntryFactory { | 23 class TestEntryFactory { |
| 24 public: | 24 public: |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 | 126 |
| 127 private: | 127 private: |
| 128 syncable::Directory* directory_; | 128 syncable::Directory* directory_; |
| 129 int64_t next_revision_; | 129 int64_t next_revision_; |
| 130 | 130 |
| 131 DISALLOW_COPY_AND_ASSIGN(TestEntryFactory); | 131 DISALLOW_COPY_AND_ASSIGN(TestEntryFactory); |
| 132 }; | 132 }; |
| 133 | 133 |
| 134 } // namespace syncer | 134 } // namespace syncer |
| 135 | 135 |
| 136 #endif // SYNC_INTERNAL_API_PUBLIC_TEST_TEST_ENTRY_FACTORY_H_ | 136 #endif // COMPONENTS_SYNC_CORE_TEST_TEST_ENTRY_FACTORY_H_ |
| OLD | NEW |