Index: chrome/browser/webdata/autofill_profile_syncable_service.h |
diff --git a/chrome/browser/webdata/autofill_profile_syncable_service.h b/chrome/browser/webdata/autofill_profile_syncable_service.h |
index f46c7e7b3a6e42a39cac9ce32c231e31fd4e409e..d04f7c15406a0832ccc471c449020bb74c663b78 100644 |
--- a/chrome/browser/webdata/autofill_profile_syncable_service.h |
+++ b/chrome/browser/webdata/autofill_profile_syncable_service.h |
@@ -17,6 +17,7 @@ |
#include "components/autofill/browser/autofill_type.h" |
#include "components/autofill/browser/webdata/autofill_change.h" |
#include "components/autofill/browser/webdata/autofill_entry.h" |
+#include "components/autofill/browser/webdata/autofill_webdata_backend.h" |
#include "components/autofill/browser/webdata/autofill_webdata_service_observer.h" |
#include "sync/api/sync_change.h" |
#include "sync/api/sync_data.h" |
@@ -52,6 +53,7 @@ class AutofillProfileSyncableService |
// |web_data_service|, which takes ownership. |
static void CreateForWebDataService( |
autofill::AutofillWebDataService* web_data_service, |
+ autofill::AutofillWebDataBackend* autofill_webdata_backend, |
const std::string& app_locale); |
// Retrieves the AutofillProfileSyncableService stored on |web_data_service|. |
@@ -79,7 +81,7 @@ class AutofillProfileSyncableService |
protected: |
AutofillProfileSyncableService( |
- autofill::AutofillWebDataService* web_data_service, |
+ autofill::AutofillWebDataBackend* autofill_webdata_backend, |
const std::string& app_locale); |
// A convenience wrapper of a bunch of state we pass around while |
@@ -178,9 +180,9 @@ class AutofillProfileSyncableService |
sync_processor_.reset(sync_processor); |
} |
- autofill::AutofillWebDataService* web_data_service_; // WEAK |
+ autofill::AutofillWebDataBackend* autofill_webdata_backend_; // WEAK |
Ilya Sherman
2013/05/13 23:44:47
nit: Perhaps just "webdata_backend_"?
Cait (Slow)
2013/05/14 22:30:08
Done.
|
std::string app_locale_; |
- ScopedObserver<autofill::AutofillWebDataService, |
+ ScopedObserver<autofill::AutofillWebDataBackend, |
AutofillProfileSyncableService> scoped_observer_; |
// Cached Autofill profiles. *Warning* deleted profiles are still in the |