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

Unified Diff: components/password_manager/core/browser/affiliation_service.h

Issue 868253005: AffiliationBackend: Implement the better part of on-demand fetching. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Tidy up NULL time related issues. Created 5 years, 11 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/password_manager/core/browser/affiliation_service.h
diff --git a/components/password_manager/core/browser/affiliation_service.h b/components/password_manager/core/browser/affiliation_service.h
index f646786c82c53e221deb663e0dcef24d80e87045..0ace7907831220354a8e4950a2ec2f5a7786b0d7 100644
--- a/components/password_manager/core/browser/affiliation_service.h
+++ b/components/password_manager/core/browser/affiliation_service.h
@@ -16,8 +16,13 @@
#include "components/password_manager/core/browser/affiliation_utils.h"
namespace base {
+class FilePath;
class SingleThreadTaskRunner;
-}
+} // namespace base
+
+namespace net {
+class URLRequestContextGetter;
+} // namespace net
namespace password_manager {
@@ -97,7 +102,8 @@ class AffiliationService : public KeyedService {
// Initializes the service by creating its backend and transferring it to the
// thread corresponding to |backend_task_runner_|.
- void Initialize();
+ void Initialize(net::URLRequestContextGetter* request_context_getter,
+ const base::FilePath& db_path);
// Looks up facets affiliated with the facet identified by |facet_uri|. If
// |cached_only| is true, the results will be based solely on prefetched

Powered by Google App Engine
This is Rietveld 408576698