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

Unified Diff: components/offline_pages/background/request_queue_store_sql.h

Issue 2228813003: Changes to fit better with the needs of the download manager. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use typedef to hide an ugly type. 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 side-by-side diff with in-line comments
Download patch
Index: components/offline_pages/background/request_queue_store_sql.h
diff --git a/components/offline_pages/background/request_queue_store_sql.h b/components/offline_pages/background/request_queue_store_sql.h
index 18f6e8792d85715384c7291adfc60cf67944d2db..92dd09f45c66d5adf50992f519c34d7962cb52ab 100644
--- a/components/offline_pages/background/request_queue_store_sql.h
+++ b/components/offline_pages/background/request_queue_store_sql.h
@@ -38,8 +38,6 @@ class RequestQueueStoreSQL : public RequestQueueStore {
const UpdateCallback& callback) override;
void RemoveRequests(const std::vector<int64_t>& request_ids,
const RemoveCallback& callback) override;
- void RemoveRequestsByClientId(const std::vector<ClientId>& client_ids,
- const RemoveCallback& callback) override;
void Reset(const ResetCallback& callback) override;
private:
@@ -61,11 +59,6 @@ class RequestQueueStoreSQL : public RequestQueueStore {
scoped_refptr<base::SingleThreadTaskRunner> runner,
const std::vector<int64_t>& request_ids,
const RemoveCallback& callback);
- static void RemoveRequestsByClientIdSync(
- sql::Connection* db,
- scoped_refptr<base::SingleThreadTaskRunner> runner,
- const std::vector<ClientId>& client_ids,
- const RemoveCallback& callback);
static void ResetSync(sql::Connection* db,
const base::FilePath& db_file_path,
scoped_refptr<base::SingleThreadTaskRunner> runner,

Powered by Google App Engine
This is Rietveld 408576698