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

Side by Side Diff: components/offline_pages/stub_offline_page_model.h

Issue 2180973002: [Offline pages] Adapting OfflinePageDownloadBridge to DownloadUIAdapter (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ui-adapter
Patch Set: Hooking up download ui adapter to offline page model and bridge Created 4 years, 4 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_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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 void GetBestPageForOnlineURL( 62 void GetBestPageForOnlineURL(
63 const GURL& online_url, 63 const GURL& online_url,
64 const SingleOfflinePageItemCallback callback) override; 64 const SingleOfflinePageItemCallback callback) override;
65 const OfflinePageItem* MaybeGetBestPageForOnlineURL( 65 const OfflinePageItem* MaybeGetBestPageForOnlineURL(
66 const GURL& online_url) const override; 66 const GURL& online_url) const override;
67 void CheckMetadataConsistency() override; 67 void CheckMetadataConsistency() override;
68 void ExpirePages(const std::vector<int64_t>& offline_ids, 68 void ExpirePages(const std::vector<int64_t>& offline_ids,
69 const base::Time& expiration_time, 69 const base::Time& expiration_time,
70 const base::Callback<void(bool)>& callback) override; 70 const base::Callback<void(bool)>& callback) override;
71 ClientPolicyController* GetPolicyController() override; 71 ClientPolicyController* GetPolicyController() override;
72 DownloadUIAdapter* GetDownloadUIAdapter() override;
72 bool is_loaded() const override; 73 bool is_loaded() const override;
73 OfflineEventLogger* GetLogger() override; 74 OfflineEventLogger* GetLogger() override;
74 75
75 private: 76 private:
76 std::vector<int64_t> offline_ids_; 77 std::vector<int64_t> offline_ids_;
77 }; 78 };
78 79
79 } // namespace offline_pages 80 } // namespace offline_pages
80 81
81 #endif // COMPONENTS_OFFLINE_PAGES_STUB_OFFLINE_PAGE_MODEL_H_ 82 #endif // COMPONENTS_OFFLINE_PAGES_STUB_OFFLINE_PAGE_MODEL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698