Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1411)

Side by Side Diff: components/reading_list/reading_list_model.h

Issue 2514333003: Componentize Reading List (Closed)
Patch Set: rebase Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « components/reading_list/reading_list_entry_unittest.cc ('k') | components/reading_list/reading_list_model.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698