Index: components/webdata_services/web_data_service_wrapper.cc |
diff --git a/components/webdata_services/web_data_service_wrapper.cc b/components/webdata_services/web_data_service_wrapper.cc |
index a8ff689fe4836b1adf07310d24d89418b6f93ea7..67d11354ad3cd645a4e7c0e530161aa40daac540 100644 |
--- a/components/webdata_services/web_data_service_wrapper.cc |
+++ b/components/webdata_services/web_data_service_wrapper.cc |
@@ -19,6 +19,7 @@ |
#include "components/autofill/core/browser/webdata/autofill_wallet_syncable_service.h" |
#include "components/autofill/core/browser/webdata/autofill_webdata_service.h" |
#include "components/password_manager/core/browser/webdata/logins_table.h" |
+#include "components/payments/content/payment_manifest_section_table.h" |
#include "components/search_engines/keyword_table.h" |
#include "components/search_engines/keyword_web_data_service.h" |
#include "components/signin/core/browser/webdata/token_service_table.h" |
@@ -93,6 +94,8 @@ WebDataServiceWrapper::WebDataServiceWrapper( |
// the old logins table. We can remove this after a while, e.g. in M22 or so. |
web_database_->AddTable(base::WrapUnique(new LoginsTable)); |
web_database_->AddTable(base::WrapUnique(new TokenServiceTable)); |
+ web_database_->AddTable( |
+ base::WrapUnique(new payments::PaymentManifestSectionTable)); |
please use gerrit instead
2017/04/05 20:33:31
base::MakeUnique.
gogerald1
2017/04/05 23:38:49
Done.
|
web_database_->LoadDatabase(); |
autofill_web_data_ = new autofill::AutofillWebDataService( |