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

Side by Side Diff: components/reading_list/core/reading_list_store.h

Issue 2763233003: Move ReadingList model to components/reading_list/core (Closed)
Patch Set: feedback Created 3 years, 9 months 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 COMPONENTS_READING_LIST_IOS_READING_LIST_STORE_H_ 5 #ifndef COMPONENTS_READING_LIST_CORE_READING_LIST_STORE_H_
6 #define COMPONENTS_READING_LIST_IOS_READING_LIST_STORE_H_ 6 #define COMPONENTS_READING_LIST_CORE_READING_LIST_STORE_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <string> 9 #include <string>
10 10
11 #include "base/threading/non_thread_safe.h" 11 #include "base/threading/non_thread_safe.h"
12 #include "components/reading_list/ios/reading_list_model_storage.h" 12 #include "components/reading_list/core/reading_list_model_storage.h"
13 #include "components/reading_list/ios/reading_list_store_delegate.h" 13 #include "components/reading_list/core/reading_list_store_delegate.h"
14 #include "components/sync/model/model_error.h" 14 #include "components/sync/model/model_error.h"
15 #include "components/sync/model/model_type_store.h" 15 #include "components/sync/model/model_type_store.h"
16 16
17 namespace syncer { 17 namespace syncer {
18 class MutableDataBatch; 18 class MutableDataBatch;
19 } 19 }
20 20
21 class ReadingListModel; 21 class ReadingListModel;
22 22
23 // A ReadingListModelStorage storing and syncing data in protobufs. 23 // A ReadingListModelStorage storing and syncing data in protobufs.
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 StoreFactoryFunction create_store_callback_; 164 StoreFactoryFunction create_store_callback_;
165 165
166 int pending_transaction_count_; 166 int pending_transaction_count_;
167 std::unique_ptr<syncer::ModelTypeStore::WriteBatch> batch_; 167 std::unique_ptr<syncer::ModelTypeStore::WriteBatch> batch_;
168 168
169 base::Clock* clock_; 169 base::Clock* clock_;
170 170
171 DISALLOW_COPY_AND_ASSIGN(ReadingListStore); 171 DISALLOW_COPY_AND_ASSIGN(ReadingListStore);
172 }; 172 };
173 173
174 #endif // COMPONENTS_READING_LIST_IOS_READING_LIST_STORE_H_ 174 #endif // COMPONENTS_READING_LIST_CORE_READING_LIST_STORE_H_
OLDNEW
« no previous file with comments | « components/reading_list/core/reading_list_pref_names.cc ('k') | components/reading_list/core/reading_list_store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698