OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_DOM_DISTILLER_CORE_DOM_DISTILLER_STORE_H_ | 5 #ifndef COMPONENTS_DOM_DISTILLER_CORE_DOM_DISTILLER_STORE_H_ |
6 #define COMPONENTS_DOM_DISTILLER_CORE_DOM_DISTILLER_STORE_H_ | 6 #define COMPONENTS_DOM_DISTILLER_CORE_DOM_DISTILLER_STORE_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 // database with |database_dir|. Also initializes the internal model to | 88 // database with |database_dir|. Also initializes the internal model to |
89 // |initial_model|. | 89 // |initial_model|. |
90 DomDistillerStore( | 90 DomDistillerStore( |
91 scoped_ptr<leveldb_proto::ProtoDatabase<ArticleEntry> > database, | 91 scoped_ptr<leveldb_proto::ProtoDatabase<ArticleEntry> > database, |
92 const std::vector<ArticleEntry>& initial_data, | 92 const std::vector<ArticleEntry>& initial_data, |
93 const base::FilePath& database_dir); | 93 const base::FilePath& database_dir); |
94 | 94 |
95 virtual ~DomDistillerStore(); | 95 virtual ~DomDistillerStore(); |
96 | 96 |
97 // DomDistillerStoreInterface implementation. | 97 // DomDistillerStoreInterface implementation. |
98 virtual syncer::SyncableService* GetSyncableService() OVERRIDE; | 98 virtual syncer::SyncableService* GetSyncableService() override; |
99 virtual bool AddEntry(const ArticleEntry& entry) OVERRIDE; | 99 virtual bool AddEntry(const ArticleEntry& entry) override; |
100 virtual bool UpdateEntry(const ArticleEntry& entry) OVERRIDE; | 100 virtual bool UpdateEntry(const ArticleEntry& entry) override; |
101 virtual bool RemoveEntry(const ArticleEntry& entry) OVERRIDE; | 101 virtual bool RemoveEntry(const ArticleEntry& entry) override; |
102 virtual bool GetEntryById(const std::string& entry_id, | 102 virtual bool GetEntryById(const std::string& entry_id, |
103 ArticleEntry* entry) OVERRIDE; | 103 ArticleEntry* entry) override; |
104 virtual bool GetEntryByUrl(const GURL& url, ArticleEntry* entry) OVERRIDE; | 104 virtual bool GetEntryByUrl(const GURL& url, ArticleEntry* entry) override; |
105 virtual std::vector<ArticleEntry> GetEntries() const OVERRIDE; | 105 virtual std::vector<ArticleEntry> GetEntries() const override; |
106 virtual void AddObserver(DomDistillerObserver* observer) OVERRIDE; | 106 virtual void AddObserver(DomDistillerObserver* observer) override; |
107 virtual void RemoveObserver(DomDistillerObserver* observer) OVERRIDE; | 107 virtual void RemoveObserver(DomDistillerObserver* observer) override; |
108 | 108 |
109 // syncer::SyncableService implementation. | 109 // syncer::SyncableService implementation. |
110 virtual syncer::SyncMergeResult MergeDataAndStartSyncing( | 110 virtual syncer::SyncMergeResult MergeDataAndStartSyncing( |
111 syncer::ModelType type, const syncer::SyncDataList& initial_sync_data, | 111 syncer::ModelType type, const syncer::SyncDataList& initial_sync_data, |
112 scoped_ptr<syncer::SyncChangeProcessor> sync_processor, | 112 scoped_ptr<syncer::SyncChangeProcessor> sync_processor, |
113 scoped_ptr<syncer::SyncErrorFactory> error_handler) OVERRIDE; | 113 scoped_ptr<syncer::SyncErrorFactory> error_handler) override; |
114 virtual void StopSyncing(syncer::ModelType type) OVERRIDE; | 114 virtual void StopSyncing(syncer::ModelType type) override; |
115 virtual syncer::SyncDataList GetAllSyncData( | 115 virtual syncer::SyncDataList GetAllSyncData( |
116 syncer::ModelType type) const OVERRIDE; | 116 syncer::ModelType type) const override; |
117 virtual syncer::SyncError ProcessSyncChanges( | 117 virtual syncer::SyncError ProcessSyncChanges( |
118 const tracked_objects::Location& from_here, | 118 const tracked_objects::Location& from_here, |
119 const syncer::SyncChangeList& change_list) OVERRIDE; | 119 const syncer::SyncChangeList& change_list) override; |
120 | 120 |
121 private: | 121 private: |
122 void OnDatabaseInit(bool success); | 122 void OnDatabaseInit(bool success); |
123 void OnDatabaseLoad(bool success, scoped_ptr<EntryVector> entries); | 123 void OnDatabaseLoad(bool success, scoped_ptr<EntryVector> entries); |
124 void OnDatabaseSave(bool success); | 124 void OnDatabaseSave(bool success); |
125 | 125 |
126 syncer::SyncMergeResult MergeDataWithModel( | 126 syncer::SyncMergeResult MergeDataWithModel( |
127 const syncer::SyncDataList& data, syncer::SyncChangeList* changes_applied, | 127 const syncer::SyncDataList& data, syncer::SyncChangeList* changes_applied, |
128 syncer::SyncChangeList* changes_missing); | 128 syncer::SyncChangeList* changes_missing); |
129 | 129 |
(...skipping 25 matching lines...) Expand all Loading... |
155 DomDistillerModel model_; | 155 DomDistillerModel model_; |
156 | 156 |
157 base::WeakPtrFactory<DomDistillerStore> weak_ptr_factory_; | 157 base::WeakPtrFactory<DomDistillerStore> weak_ptr_factory_; |
158 | 158 |
159 DISALLOW_COPY_AND_ASSIGN(DomDistillerStore); | 159 DISALLOW_COPY_AND_ASSIGN(DomDistillerStore); |
160 }; | 160 }; |
161 | 161 |
162 } // namespace dom_distiller | 162 } // namespace dom_distiller |
163 | 163 |
164 #endif // COMPONENTS_DOM_DISTILLER_CORE_DOM_DISTILLER_STORE_H_ | 164 #endif // COMPONENTS_DOM_DISTILLER_CORE_DOM_DISTILLER_STORE_H_ |
OLD | NEW |