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_READING_LIST_MODEL_H_ | 5 #ifndef COMPONENTS_READING_LIST_IOS_READING_LIST_MODEL_H_ |
6 #define COMPONENTS_READING_LIST_READING_LIST_MODEL_H_ | 6 #define COMPONENTS_READING_LIST_IOS_READING_LIST_MODEL_H_ |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "base/callback.h" | 12 #include "base/callback.h" |
13 #include "base/observer_list.h" | 13 #include "base/observer_list.h" |
14 #include "base/threading/non_thread_safe.h" | 14 #include "base/threading/non_thread_safe.h" |
15 #include "components/reading_list/reading_list_entry.h" | 15 #include "components/reading_list/ios/reading_list_entry.h" |
16 #include "components/reading_list/reading_list_model_observer.h" | 16 #include "components/reading_list/ios/reading_list_model_observer.h" |
17 | 17 |
18 class GURL; | 18 class GURL; |
19 class ReadingListEntry; | 19 class ReadingListEntry; |
20 class ReadingListModel; | 20 class ReadingListModel; |
21 class ScopedReadingListBatchUpdate; | 21 class ScopedReadingListBatchUpdate; |
22 | 22 |
23 namespace syncer { | 23 namespace syncer { |
24 class ModelTypeSyncBridge; | 24 class ModelTypeSyncBridge; |
25 } | 25 } |
26 | 26 |
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
146 | 146 |
147 // Called when model is leaving batch update mode. | 147 // Called when model is leaving batch update mode. |
148 virtual void LeavingBatchUpdates(); | 148 virtual void LeavingBatchUpdates(); |
149 | 149 |
150 private: | 150 private: |
151 unsigned int current_batch_updates_count_; | 151 unsigned int current_batch_updates_count_; |
152 | 152 |
153 DISALLOW_COPY_AND_ASSIGN(ReadingListModel); | 153 DISALLOW_COPY_AND_ASSIGN(ReadingListModel); |
154 }; | 154 }; |
155 | 155 |
156 #endif // COMPONENTS_READING_LIST_READING_LIST_MODEL_H_ | 156 #endif // COMPONENTS_READING_LIST_IOS_READING_LIST_MODEL_H_ |
OLD | NEW |