| OLD | NEW |
| 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_OFFLINE_PAGES_STUB_OFFLINE_PAGE_MODEL_H_ | 5 #ifndef COMPONENTS_OFFLINE_PAGES_STUB_OFFLINE_PAGE_MODEL_H_ |
| 6 #define COMPONENTS_OFFLINE_PAGES_STUB_OFFLINE_PAGE_MODEL_H_ | 6 #define COMPONENTS_OFFLINE_PAGES_STUB_OFFLINE_PAGE_MODEL_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 int64_t proposed_offline_id, | 29 int64_t proposed_offline_id, |
| 30 std::unique_ptr<OfflinePageArchiver> archiver, | 30 std::unique_ptr<OfflinePageArchiver> archiver, |
| 31 const SavePageCallback& callback) override; | 31 const SavePageCallback& callback) override; |
| 32 void MarkPageAccessed(int64_t offline_id) override; | 32 void MarkPageAccessed(int64_t offline_id) override; |
| 33 void ClearAll(const base::Closure& callback) override; | 33 void ClearAll(const base::Closure& callback) override; |
| 34 void DeletePagesByOfflineId(const std::vector<int64_t>& offline_ids, | 34 void DeletePagesByOfflineId(const std::vector<int64_t>& offline_ids, |
| 35 const DeletePageCallback& callback) override; | 35 const DeletePageCallback& callback) override; |
| 36 void DeleteCachedPagesByURLPredicate( | 36 void DeleteCachedPagesByURLPredicate( |
| 37 const UrlPredicate& predicate, | 37 const UrlPredicate& predicate, |
| 38 const DeletePageCallback& callback) override; | 38 const DeletePageCallback& callback) override; |
| 39 void HasPages(const std::string& name_space, | |
| 40 const HasPagesCallback& callback) override; | |
| 41 void CheckPagesExistOffline( | 39 void CheckPagesExistOffline( |
| 42 const std::set<GURL>& urls, | 40 const std::set<GURL>& urls, |
| 43 const CheckPagesExistOfflineCallback& callback) override; | 41 const CheckPagesExistOfflineCallback& callback) override; |
| 44 void GetAllPages(const MultipleOfflinePageItemCallback& callback) override; | 42 void GetAllPages(const MultipleOfflinePageItemCallback& callback) override; |
| 45 void GetAllPagesWithExpired( | 43 void GetAllPagesWithExpired( |
| 46 const MultipleOfflinePageItemCallback& callback) override; | 44 const MultipleOfflinePageItemCallback& callback) override; |
| 47 void GetOfflineIdsForClientId( | 45 void GetOfflineIdsForClientId( |
| 48 const ClientId& client_id, | 46 const ClientId& client_id, |
| 49 const MultipleOfflineIdCallback& callback) override; | 47 const MultipleOfflineIdCallback& callback) override; |
| 50 const std::vector<int64_t> MaybeGetOfflineIdsForClientId( | 48 const std::vector<int64_t> MaybeGetOfflineIdsForClientId( |
| (...skipping 21 matching lines...) Expand all Loading... |
| 72 bool is_loaded() const override; | 70 bool is_loaded() const override; |
| 73 OfflineEventLogger* GetLogger() override; | 71 OfflineEventLogger* GetLogger() override; |
| 74 | 72 |
| 75 private: | 73 private: |
| 76 std::vector<int64_t> offline_ids_; | 74 std::vector<int64_t> offline_ids_; |
| 77 }; | 75 }; |
| 78 | 76 |
| 79 } // namespace offline_pages | 77 } // namespace offline_pages |
| 80 | 78 |
| 81 #endif // COMPONENTS_OFFLINE_PAGES_STUB_OFFLINE_PAGE_MODEL_H_ | 79 #endif // COMPONENTS_OFFLINE_PAGES_STUB_OFFLINE_PAGE_MODEL_H_ |
| OLD | NEW |