| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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_READING_LIST_IOS_READING_LIST_MODEL_STORAGE_H_ | 5 #ifndef COMPONENTS_READING_LIST_CORE_READING_LIST_MODEL_STORAGE_H_ |
| 6 #define COMPONENTS_READING_LIST_IOS_READING_LIST_MODEL_STORAGE_H_ | 6 #define COMPONENTS_READING_LIST_CORE_READING_LIST_MODEL_STORAGE_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "components/reading_list/ios/reading_list_entry.h" | 11 #include "components/reading_list/core/reading_list_entry.h" |
| 12 #include "components/sync/base/model_type.h" | 12 #include "components/sync/base/model_type.h" |
| 13 #include "components/sync/model/model_type_sync_bridge.h" | 13 #include "components/sync/model/model_type_sync_bridge.h" |
| 14 | 14 |
| 15 class ReadingListModel; | 15 class ReadingListModel; |
| 16 class ReadingListStoreDelegate; | 16 class ReadingListStoreDelegate; |
| 17 | 17 |
| 18 namespace base { | 18 namespace base { |
| 19 class Clock; | 19 class Clock; |
| 20 } | 20 } |
| 21 | 21 |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 virtual ~ScopedBatchUpdate() {} | 64 virtual ~ScopedBatchUpdate() {} |
| 65 | 65 |
| 66 private: | 66 private: |
| 67 DISALLOW_COPY_AND_ASSIGN(ScopedBatchUpdate); | 67 DISALLOW_COPY_AND_ASSIGN(ScopedBatchUpdate); |
| 68 }; | 68 }; |
| 69 | 69 |
| 70 private: | 70 private: |
| 71 DISALLOW_COPY_AND_ASSIGN(ReadingListModelStorage); | 71 DISALLOW_COPY_AND_ASSIGN(ReadingListModelStorage); |
| 72 }; | 72 }; |
| 73 | 73 |
| 74 #endif // COMPONENTS_READING_LIST_IOS_READING_LIST_MODEL_STORAGE_H_ | 74 #endif // COMPONENTS_READING_LIST_CORE_READING_LIST_MODEL_STORAGE_H_ |
| OLD | NEW |