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

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

Issue 2284933002: Remove OfflineURL from offline page (Closed)
Patch Set: Add comment per feedback Created 4 years, 2 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 void GetOfflineIdsForClientId( 44 void GetOfflineIdsForClientId(
45 const ClientId& client_id, 45 const ClientId& client_id,
46 const MultipleOfflineIdCallback& callback) override; 46 const MultipleOfflineIdCallback& callback) override;
47 const std::vector<int64_t> MaybeGetOfflineIdsForClientId( 47 const std::vector<int64_t> MaybeGetOfflineIdsForClientId(
48 const ClientId& client_id) const override; 48 const ClientId& client_id) const override;
49 void GetPageByOfflineId( 49 void GetPageByOfflineId(
50 int64_t offline_id, 50 int64_t offline_id,
51 const SingleOfflinePageItemCallback& callback) override; 51 const SingleOfflinePageItemCallback& callback) override;
52 const OfflinePageItem* MaybeGetPageByOfflineId( 52 const OfflinePageItem* MaybeGetPageByOfflineId(
53 int64_t offline_id) const override; 53 int64_t offline_id) const override;
54 void GetPageByOfflineURL(
55 const GURL& offline_url,
56 const SingleOfflinePageItemCallback& callback) override;
57 const OfflinePageItem* MaybeGetPageByOfflineURL(
58 const GURL& offline_url) const override;
59 void GetPagesByOnlineURL( 54 void GetPagesByOnlineURL(
60 const GURL& online_url, 55 const GURL& online_url,
61 const MultipleOfflinePageItemCallback& callback) override; 56 const MultipleOfflinePageItemCallback& callback) override;
62 const OfflinePageItem* MaybeGetBestPageForOnlineURL( 57 const OfflinePageItem* MaybeGetBestPageForOnlineURL(
63 const GURL& online_url) const override; 58 const GURL& online_url) const override;
64 void ExpirePages(const std::vector<int64_t>& offline_ids, 59 void ExpirePages(const std::vector<int64_t>& offline_ids,
65 const base::Time& expiration_time, 60 const base::Time& expiration_time,
66 const base::Callback<void(bool)>& callback) override; 61 const base::Callback<void(bool)>& callback) override;
67 ClientPolicyController* GetPolicyController() override; 62 ClientPolicyController* GetPolicyController() override;
68 bool is_loaded() const override; 63 bool is_loaded() const override;
69 OfflineEventLogger* GetLogger() override; 64 OfflineEventLogger* GetLogger() override;
70 65
71 private: 66 private:
72 std::vector<int64_t> offline_ids_; 67 std::vector<int64_t> offline_ids_;
73 }; 68 };
74 69
75 } // namespace offline_pages 70 } // namespace offline_pages
76 71
77 #endif // COMPONENTS_OFFLINE_PAGES_STUB_OFFLINE_PAGE_MODEL_H_ 72 #endif // COMPONENTS_OFFLINE_PAGES_STUB_OFFLINE_PAGE_MODEL_H_
OLDNEW
« no previous file with comments | « components/offline_pages/offline_page_model_impl_unittest.cc ('k') | components/offline_pages/stub_offline_page_model.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698