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

Unified Diff: chrome/browser/web_data_service_factory.h

Issue 2838433002: [Payments] Cache payment manifests. (Closed)
Patch Set: fix tests Created 3 years, 8 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: chrome/browser/web_data_service_factory.h
diff --git a/chrome/browser/web_data_service_factory.h b/chrome/browser/web_data_service_factory.h
index 9ab056302a46da4b5df570a8a24192104c4f4e76..a807eead3e1deed8c6bcef93f920b63e6efb08db 100644
--- a/chrome/browser/web_data_service_factory.h
+++ b/chrome/browser/web_data_service_factory.h
@@ -24,6 +24,12 @@ class WebDataServiceWrapper;
class PasswordWebDataService;
#endif
+#if defined(OS_ANDROID)
+namespace payments {
+class PaymentManifestWebDataService;
+} // namespace payments
please use gerrit instead 2017/04/24 18:22:32 Remove this comment to match the rest of the file.
gogerald1 2017/04/26 13:46:33 Done.
+#endif
+
namespace autofill {
class AutofillWebDataService;
}
@@ -61,6 +67,12 @@ class WebDataServiceFactory : public BrowserContextKeyedServiceFactory {
ServiceAccessType access_type);
#endif
+#if defined(OS_ANDROID)
+ static scoped_refptr<payments::PaymentManifestWebDataService>
+ GetPaymentManifestWebDataForProfile(Profile* profile,
+ ServiceAccessType access_type);
+#endif
+
static WebDataServiceFactory* GetInstance();
private:

Powered by Google App Engine
This is Rietveld 408576698