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 IOS_CHROME_BROWSER_READING_LIST_READING_LIST_MODEL_H_ | 5 #ifndef COMPONENTS_READING_LIST_READING_LIST_MODEL_H_ |
6 #define IOS_CHROME_BROWSER_READING_LIST_READING_LIST_MODEL_H_ | 6 #define COMPONENTS_READING_LIST_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 "ios/chrome/browser/reading_list/reading_list_entry.h" | 15 #include "components/reading_list/reading_list_entry.h" |
16 #include "ios/chrome/browser/reading_list/reading_list_model_observer.h" | 16 #include "components/reading_list/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 ReadingListStore; | 21 class ReadingListStore; |
22 class ScopedReadingListBatchUpdate; | 22 class ScopedReadingListBatchUpdate; |
23 | 23 |
24 namespace ios { | 24 namespace ios { |
25 class ChromeBrowserState; | 25 class ChromeBrowserState; |
26 } | 26 } |
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
151 | 151 |
152 // Called when model is leaving batch update mode. | 152 // Called when model is leaving batch update mode. |
153 virtual void LeavingBatchUpdates(); | 153 virtual void LeavingBatchUpdates(); |
154 | 154 |
155 private: | 155 private: |
156 unsigned int current_batch_updates_count_; | 156 unsigned int current_batch_updates_count_; |
157 | 157 |
158 DISALLOW_COPY_AND_ASSIGN(ReadingListModel); | 158 DISALLOW_COPY_AND_ASSIGN(ReadingListModel); |
159 }; | 159 }; |
160 | 160 |
161 #endif // IOS_CHROME_BROWSER_READING_LIST_READING_LIST_MODEL_H_ | 161 #endif // COMPONENTS_READING_LIST_READING_LIST_MODEL_H_ |
OLD | NEW |