| Index: components/autofill/core/browser/autocomplete_history_manager.h
|
| diff --git a/components/autofill/core/browser/autocomplete_history_manager.h b/components/autofill/core/browser/autocomplete_history_manager.h
|
| index 50ad59903ec51120021c47889758f40875085db2..03200342cce9b816a5877da7d10dce014a4c5027 100644
|
| --- a/components/autofill/core/browser/autocomplete_history_manager.h
|
| +++ b/components/autofill/core/browser/autocomplete_history_manager.h
|
| @@ -16,7 +16,7 @@ namespace autofill {
|
|
|
| class AutofillDriver;
|
| class AutofillExternalDelegate;
|
| -class AutofillManagerDelegate;
|
| +class AutofillClient;
|
| struct FormData;
|
|
|
| // Per-tab Autocomplete history manager. Handles receiving form data
|
| @@ -25,7 +25,7 @@ struct FormData;
|
| class AutocompleteHistoryManager : public WebDataServiceConsumer {
|
| public:
|
| AutocompleteHistoryManager(AutofillDriver* driver,
|
| - AutofillManagerDelegate* delegate);
|
| + AutofillClient* autofill_client);
|
| virtual ~AutocompleteHistoryManager();
|
|
|
| // WebDataServiceConsumer implementation.
|
| @@ -82,7 +82,7 @@ class AutocompleteHistoryManager : public WebDataServiceConsumer {
|
| AutofillExternalDelegate* external_delegate_;
|
|
|
| // Delegate to provide whether or not autocomplete functionality is enabled.
|
| - AutofillManagerDelegate* const manager_delegate_;
|
| + AutofillClient* const autofill_client_;
|
|
|
| // Whether IPC is sent.
|
| bool send_ipc_;
|
|
|