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

Side by Side Diff: components/offline_pages/background/request_queue_in_memory_store.h

Issue 2221323003: Add an API to Pause and Resume background offlining requests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: More FGorski CR feedback 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_BACKGROUND_REQUEST_QUEUE_IN_MEMORY_STORE_H_ 5 #ifndef COMPONENTS_OFFLINE_PAGES_BACKGROUND_REQUEST_QUEUE_IN_MEMORY_STORE_H_
6 #define COMPONENTS_OFFLINE_PAGES_BACKGROUND_REQUEST_QUEUE_IN_MEMORY_STORE_H_ 6 #define COMPONENTS_OFFLINE_PAGES_BACKGROUND_REQUEST_QUEUE_IN_MEMORY_STORE_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <map> 10 #include <map>
11 11
12 #include "base/macros.h" 12 #include "base/macros.h"
13 #include "components/offline_pages/background/request_queue_store.h" 13 #include "components/offline_pages/background/request_queue_store.h"
14 #include "components/offline_pages/background/save_page_request.h"
14 15
15 namespace offline_pages { 16 namespace offline_pages {
16 17
17 class SavePageRequest;
18
19 // Interface for classes storing save page requests. 18 // Interface for classes storing save page requests.
20 class RequestQueueInMemoryStore : public RequestQueueStore { 19 class RequestQueueInMemoryStore : public RequestQueueStore {
21 public: 20 public:
22 RequestQueueInMemoryStore(); 21 RequestQueueInMemoryStore();
23 ~RequestQueueInMemoryStore() override; 22 ~RequestQueueInMemoryStore() override;
24 23
25 // RequestQueueStore implementaiton. 24 // RequestQueueStore implementaiton.
26 void GetRequests(const GetRequestsCallback& callback) override; 25 void GetRequests(const GetRequestsCallback& callback) override;
27 void AddOrUpdateRequest(const SavePageRequest& request, 26 void AddOrUpdateRequest(const SavePageRequest& request,
28 const UpdateCallback& callback) override; 27 const UpdateCallback& callback) override;
29 // Remove requests by request ID. In case the |request_ids| is empty, the 28 // Remove requests by request ID. In case the |request_ids| is empty, the
30 // result will be true, but the count of deleted pages will be 0. 29 // result will be true, but the count of deleted pages will be 0.
31 void RemoveRequests(const std::vector<int64_t>& request_ids, 30 void RemoveRequests(const std::vector<int64_t>& request_ids,
32 const RemoveCallback& callback) override; 31 const RemoveCallback& callback) override;
33 // Remove requests by client ID. In case the |client_ids| is empty, the 32 // Remove requests by client ID. In case the |client_ids| is empty, the
34 // result will be true, but the count of deleted pages will be 0. 33 // result will be true, but the count of deleted pages will be 0.
35 void RemoveRequestsByClientId(const std::vector<ClientId>& client_ids, 34 void RemoveRequestsByClientId(const std::vector<ClientId>& client_ids,
36 const RemoveCallback& callback) override; 35 const RemoveCallback& callback) override;
36 // Set the state of associated requests to |new_state|.
37 void ChangeRequestsState(const std::vector<int64_t>& request_ids,
38 const SavePageRequest::RequestState new_state,
39 const UpdateCallback& callback) override;
40
37 void Reset(const ResetCallback& callback) override; 41 void Reset(const ResetCallback& callback) override;
38 42
39 private: 43 private:
40 typedef std::map<int64_t, SavePageRequest> RequestsMap; 44 typedef std::map<int64_t, SavePageRequest> RequestsMap;
41 RequestsMap requests_; 45 RequestsMap requests_;
42 46
43 DISALLOW_COPY_AND_ASSIGN(RequestQueueInMemoryStore); 47 DISALLOW_COPY_AND_ASSIGN(RequestQueueInMemoryStore);
44 }; 48 };
45 49
46 } // namespace offline_pages 50 } // namespace offline_pages
47 51
48 #endif // COMPONENTS_OFFLINE_PAGES_BACKGROUND_REQUEST_QUEUE_IN_MEMORY_STORE_H_ 52 #endif // COMPONENTS_OFFLINE_PAGES_BACKGROUND_REQUEST_QUEUE_IN_MEMORY_STORE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698