OLD | NEW |
---|---|
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_OFFLINE_PAGES_OFFLINE_PAGE_MODEL_H_ | 5 #ifndef COMPONENTS_OFFLINE_PAGES_OFFLINE_PAGE_MODEL_H_ |
6 #define COMPONENTS_OFFLINE_PAGES_OFFLINE_PAGE_MODEL_H_ | 6 #define COMPONENTS_OFFLINE_PAGES_OFFLINE_PAGE_MODEL_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <memory> | 10 #include <memory> |
11 #include <set> | 11 #include <set> |
12 #include <string> | 12 #include <string> |
13 #include <vector> | 13 #include <vector> |
14 | 14 |
15 #include "base/supports_user_data.h" | 15 #include "base/supports_user_data.h" |
16 #include "components/offline_pages/offline_event_logger.h" | 16 #include "components/offline_pages/offline_event_logger.h" |
17 #include "components/offline_pages/offline_page_archiver.h" | 17 #include "components/offline_pages/offline_page_archiver.h" |
18 #include "components/offline_pages/offline_page_model_query.h" | |
fgorski
2016/10/26 18:05:41
is this necessary? does this file really depend on
dewittj
2016/10/27 22:49:17
Done.
No, remnant from previous iteration.
| |
18 #include "components/offline_pages/offline_page_storage_manager.h" | 19 #include "components/offline_pages/offline_page_storage_manager.h" |
19 #include "components/offline_pages/offline_page_types.h" | 20 #include "components/offline_pages/offline_page_types.h" |
20 | 21 |
21 class GURL; | 22 class GURL; |
22 namespace base { | 23 namespace base { |
23 class Time; | 24 class Time; |
24 } // namespace base | 25 } // namespace base |
25 | 26 |
26 namespace offline_pages { | 27 namespace offline_pages { |
27 | 28 |
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
157 // TODO(dougarnett): Remove this and its uses. | 158 // TODO(dougarnett): Remove this and its uses. |
158 virtual bool is_loaded() const = 0; | 159 virtual bool is_loaded() const = 0; |
159 | 160 |
160 // Returns the logger. Ownership is retained by the model. | 161 // Returns the logger. Ownership is retained by the model. |
161 virtual OfflineEventLogger* GetLogger() = 0; | 162 virtual OfflineEventLogger* GetLogger() = 0; |
162 }; | 163 }; |
163 | 164 |
164 } // namespace offline_pages | 165 } // namespace offline_pages |
165 | 166 |
166 #endif // COMPONENTS_OFFLINE_PAGES_OFFLINE_PAGE_MODEL_H_ | 167 #endif // COMPONENTS_OFFLINE_PAGES_OFFLINE_PAGE_MODEL_H_ |
OLD | NEW |