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

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

Issue 2373933003: [Offline pages] Updating RequestQueue::RemoveRequests to use a TaskQueue (Closed)
Patch Set: Rebasing 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_BACKGROUND_REQUEST_QUEUE_STORE_SQL_H_ 5 #ifndef COMPONENTS_OFFLINE_PAGES_BACKGROUND_REQUEST_QUEUE_STORE_SQL_H_
6 #define COMPONENTS_OFFLINE_PAGES_BACKGROUND_REQUEST_QUEUE_STORE_SQL_H_ 6 #define COMPONENTS_OFFLINE_PAGES_BACKGROUND_REQUEST_QUEUE_STORE_SQL_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <memory> 10 #include <memory>
(...skipping 21 matching lines...) Expand all
32 const base::FilePath& database_dir); 32 const base::FilePath& database_dir);
33 ~RequestQueueStoreSQL() override; 33 ~RequestQueueStoreSQL() override;
34 34
35 // RequestQueueStore implementation. 35 // RequestQueueStore implementation.
36 void GetRequests(const GetRequestsCallback& callback) override; 36 void GetRequests(const GetRequestsCallback& callback) override;
37 void AddRequest(const SavePageRequest& offline_page, 37 void AddRequest(const SavePageRequest& offline_page,
38 const AddCallback& callback) override; 38 const AddCallback& callback) override;
39 void UpdateRequests(const std::vector<SavePageRequest>& requests, 39 void UpdateRequests(const std::vector<SavePageRequest>& requests,
40 const UpdateCallback& callback) override; 40 const UpdateCallback& callback) override;
41 void RemoveRequests(const std::vector<int64_t>& request_ids, 41 void RemoveRequests(const std::vector<int64_t>& request_ids,
42 const RemoveCallback& callback) override; 42 const UpdateCallback& callback) override;
43 void Reset(const ResetCallback& callback) override; 43 void Reset(const ResetCallback& callback) override;
44 44
45 private: 45 private:
46 // Helper functions to return immediately if no database is found. 46 // Helper functions to return immediately if no database is found.
47 bool CheckDb(const base::Closure& callback); 47 bool CheckDb(const base::Closure& callback);
48 48
49 // Used to initialize DB connection. 49 // Used to initialize DB connection.
50 void OpenConnection(); 50 void OpenConnection();
51 void OnOpenConnectionDone(bool success); 51 void OnOpenConnectionDone(bool success);
52 52
53 // Used to finalize connection reset. 53 // Used to finalize connection reset.
54 void OnResetDone(const ResetCallback& callback, bool success); 54 void OnResetDone(const ResetCallback& callback, bool success);
55 55
56 // Background thread where all SQL access should be run. 56 // Background thread where all SQL access should be run.
57 scoped_refptr<base::SequencedTaskRunner> background_task_runner_; 57 scoped_refptr<base::SequencedTaskRunner> background_task_runner_;
58 58
59 // Path to the database on disk. 59 // Path to the database on disk.
60 base::FilePath db_file_path_; 60 base::FilePath db_file_path_;
61 61
62 // Database connection. 62 // Database connection.
63 std::unique_ptr<sql::Connection> db_; 63 std::unique_ptr<sql::Connection> db_;
64 64
65 base::WeakPtrFactory<RequestQueueStoreSQL> weak_ptr_factory_; 65 base::WeakPtrFactory<RequestQueueStoreSQL> weak_ptr_factory_;
66 DISALLOW_COPY_AND_ASSIGN(RequestQueueStoreSQL); 66 DISALLOW_COPY_AND_ASSIGN(RequestQueueStoreSQL);
67 }; 67 };
68 68
69 } // namespace offline_pages 69 } // namespace offline_pages
70 70
71 #endif // COMPONENTS_OFFLINE_PAGES_BACKGROUND_REQUEST_QUEUE_STORE_SQL_H_ 71 #endif // COMPONENTS_OFFLINE_PAGES_BACKGROUND_REQUEST_QUEUE_STORE_SQL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698