| 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 |
| 11 #include "base/containers/hash_tables.h" | 11 #include "base/containers/hash_tables.h" |
| 12 #include "base/macros.h" |
| 12 #include "base/memory/weak_ptr.h" | 13 #include "base/memory/weak_ptr.h" |
| 13 #include "base/observer_list.h" | 14 #include "base/observer_list.h" |
| 14 #include "components/dom_distiller/core/article_attachments_data.h" | 15 #include "components/dom_distiller/core/article_attachments_data.h" |
| 15 #include "components/dom_distiller/core/article_entry.h" | 16 #include "components/dom_distiller/core/article_entry.h" |
| 16 #include "components/dom_distiller/core/dom_distiller_model.h" | 17 #include "components/dom_distiller/core/dom_distiller_model.h" |
| 17 #include "components/dom_distiller/core/dom_distiller_observer.h" | 18 #include "components/dom_distiller/core/dom_distiller_observer.h" |
| 18 #include "components/leveldb_proto/proto_database.h" | 19 #include "components/leveldb_proto/proto_database.h" |
| 19 #include "sync/api/sync_change.h" | 20 #include "sync/api/sync_change.h" |
| 20 #include "sync/api/sync_data.h" | 21 #include "sync/api/sync_data.h" |
| 21 #include "sync/api/sync_error.h" | 22 #include "sync/api/sync_error.h" |
| (...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 205 DomDistillerModel model_; | 206 DomDistillerModel model_; |
| 206 | 207 |
| 207 base::WeakPtrFactory<DomDistillerStore> weak_ptr_factory_; | 208 base::WeakPtrFactory<DomDistillerStore> weak_ptr_factory_; |
| 208 | 209 |
| 209 DISALLOW_COPY_AND_ASSIGN(DomDistillerStore); | 210 DISALLOW_COPY_AND_ASSIGN(DomDistillerStore); |
| 210 }; | 211 }; |
| 211 | 212 |
| 212 } // namespace dom_distiller | 213 } // namespace dom_distiller |
| 213 | 214 |
| 214 #endif // COMPONENTS_DOM_DISTILLER_CORE_DOM_DISTILLER_STORE_H_ | 215 #endif // COMPONENTS_DOM_DISTILLER_CORE_DOM_DISTILLER_STORE_H_ |
| OLD | NEW |