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

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

Issue 2410903003: [Offline pages] Adding capability to query a subset of requests based on IDs (Closed)
Patch Set: Addressing remaining 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
« no previous file with comments | « no previous file | components/offline_pages/background/request_queue_in_memory_store.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #include "components/offline_pages/background/save_page_request.h"
15 15
16 namespace offline_pages { 16 namespace offline_pages {
17 17
18 // Interface for classes storing save page requests. 18 // Interface for classes storing save page requests.
19 class RequestQueueInMemoryStore : public RequestQueueStore { 19 class RequestQueueInMemoryStore : public RequestQueueStore {
20 public: 20 public:
21 RequestQueueInMemoryStore(); 21 RequestQueueInMemoryStore();
22 ~RequestQueueInMemoryStore() override; 22 ~RequestQueueInMemoryStore() override;
23 23
24 // RequestQueueStore implementaiton. 24 // RequestQueueStore implementaiton.
25 void GetRequests(const GetRequestsCallback& callback) override; 25 void GetRequests(const GetRequestsCallback& callback) override;
26 void GetRequestsByIds(const std::vector<int64_t>& request_ids,
27 const UpdateCallback& callback) override;
26 void AddRequest(const SavePageRequest& offline_page, 28 void AddRequest(const SavePageRequest& offline_page,
27 const AddCallback& callback) override; 29 const AddCallback& callback) override;
28 void UpdateRequests(const std::vector<SavePageRequest>& requests, 30 void UpdateRequests(const std::vector<SavePageRequest>& requests,
29 const UpdateCallback& callback) override; 31 const UpdateCallback& callback) override;
30 void RemoveRequests(const std::vector<int64_t>& request_ids, 32 void RemoveRequests(const std::vector<int64_t>& request_ids,
31 const UpdateCallback& callback) override; 33 const UpdateCallback& callback) override;
32 34
33 void Reset(const ResetCallback& callback) override; 35 void Reset(const ResetCallback& callback) override;
34 StoreState state() const override; 36 StoreState state() const override;
35 37
36 private: 38 private:
37 typedef std::map<int64_t, SavePageRequest> RequestsMap; 39 typedef std::map<int64_t, SavePageRequest> RequestsMap;
38 RequestsMap requests_; 40 RequestsMap requests_;
39 41
40 DISALLOW_COPY_AND_ASSIGN(RequestQueueInMemoryStore); 42 DISALLOW_COPY_AND_ASSIGN(RequestQueueInMemoryStore);
41 }; 43 };
42 44
43 } // namespace offline_pages 45 } // namespace offline_pages
44 46
45 #endif // COMPONENTS_OFFLINE_PAGES_BACKGROUND_REQUEST_QUEUE_IN_MEMORY_STORE_H_ 47 #endif // COMPONENTS_OFFLINE_PAGES_BACKGROUND_REQUEST_QUEUE_IN_MEMORY_STORE_H_
OLDNEW
« no previous file with comments | « no previous file | components/offline_pages/background/request_queue_in_memory_store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698