| Index: chrome/browser/ui/autofill/chrome_autofill_client.h
|
| diff --git a/chrome/browser/ui/autofill/chrome_autofill_client.h b/chrome/browser/ui/autofill/chrome_autofill_client.h
|
| index 28f1032e408017d25927450589a4d47ac40fe4d3..6385f3ce364d9943ac43db56bf7f65da5686d83d 100644
|
| --- a/chrome/browser/ui/autofill/chrome_autofill_client.h
|
| +++ b/chrome/browser/ui/autofill/chrome_autofill_client.h
|
| @@ -46,6 +46,7 @@ class ChromeAutofillClient
|
| PersonalDataManager* GetPersonalDataManager() override;
|
| scoped_refptr<AutofillWebDataService> GetDatabase() override;
|
| PrefService* GetPrefs() override;
|
| + IdentityProvider* GetIdentityProvider() override;
|
| void HideRequestAutocompleteDialog() override;
|
| void ShowAutofillSettings() override;
|
| void ShowUnmaskPrompt(const CreditCard& card,
|
| @@ -129,6 +130,9 @@ class ChromeAutofillClient
|
| // The last render frame that called requestAutocomplete.
|
| content::RenderFrameHost* last_rfh_to_rac_;
|
|
|
| + // The identity provider, used for Wallet integration.
|
| + scoped_ptr<IdentityProvider> identity_provider_;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(ChromeAutofillClient);
|
| };
|
|
|
|
|