| Index: components/autofill/browser/autofill_manager_delegate.h
|
| diff --git a/components/autofill/browser/autofill_manager_delegate.h b/components/autofill/browser/autofill_manager_delegate.h
|
| index abcb421287c9b86991a834f28ce0c87a37c6d164..94520fb56fe44a3c521747bc29436a85479e64f8 100644
|
| --- a/components/autofill/browser/autofill_manager_delegate.h
|
| +++ b/components/autofill/browser/autofill_manager_delegate.h
|
| @@ -8,6 +8,7 @@
|
| #include <vector>
|
|
|
| #include "base/callback_forward.h"
|
| +#include "base/memory/ref_counted.h"
|
| #include "base/string16.h"
|
|
|
| namespace content {
|
| @@ -29,6 +30,7 @@ namespace autofill {
|
|
|
| class AutofillMetrics;
|
| class AutofillPopupDelegate;
|
| +class AutofillWebDataService;
|
| class CreditCard;
|
| class FormStructure;
|
| class PasswordGenerator;
|
| @@ -58,6 +60,9 @@ class AutofillManagerDelegate {
|
| public:
|
| virtual ~AutofillManagerDelegate() {}
|
|
|
| + // Gets the AutofillWebDataService instance associated with the delegate.
|
| + virtual scoped_refptr<AutofillWebDataService> GetAutofillWebDataService() = 0;
|
| +
|
| // Gets the PersonalDataManager instance associated with the delegate.
|
| virtual PersonalDataManager* GetPersonalDataManager() = 0;
|
|
|
|
|