| Index: chrome/browser/ui/android/autofill/autofill_dialog_controller_android.h
|
| diff --git a/chrome/browser/ui/android/autofill/autofill_dialog_controller_android.h b/chrome/browser/ui/android/autofill/autofill_dialog_controller_android.h
|
| index d1ffb3a19bd6178c88bfe1f2c557b76d848b3934..92957b84a81bc5aa307685ed306c943105e7fbb3 100644
|
| --- a/chrome/browser/ui/android/autofill/autofill_dialog_controller_android.h
|
| +++ b/chrome/browser/ui/android/autofill/autofill_dialog_controller_android.h
|
| @@ -12,7 +12,7 @@
|
| #include "base/time/time.h"
|
| #include "chrome/browser/ui/autofill/autofill_dialog_controller.h"
|
| #include "chrome/browser/ui/autofill/autofill_dialog_types.h"
|
| -#include "components/autofill/core/browser/autofill_manager_delegate.h"
|
| +#include "components/autofill/core/browser/autofill_client.h"
|
|
|
| class Profile;
|
|
|
| @@ -27,7 +27,7 @@ class AutofillDialogControllerAndroid : public AutofillDialogController {
|
| content::WebContents* contents,
|
| const FormData& form_structure,
|
| const GURL& source_url,
|
| - const AutofillManagerDelegate::ResultCallback& callback);
|
| + const AutofillClient::ResultCallback& callback);
|
|
|
| virtual ~AutofillDialogControllerAndroid();
|
|
|
| @@ -55,7 +55,7 @@ class AutofillDialogControllerAndroid : public AutofillDialogController {
|
| content::WebContents* contents,
|
| const FormData& form_structure,
|
| const GURL& source_url,
|
| - const AutofillManagerDelegate::ResultCallback& callback);
|
| + const AutofillClient::ResultCallback& callback);
|
|
|
| const AutofillMetrics& GetMetricLogger() const {
|
| return metric_logger_;
|
| @@ -88,7 +88,7 @@ class AutofillDialogControllerAndroid : public AutofillDialogController {
|
| GURL source_url_;
|
|
|
| // The callback via which we return the collected data.
|
| - AutofillManagerDelegate::ResultCallback callback_;
|
| + AutofillClient::ResultCallback callback_;
|
|
|
| // Whether |form_structure_| has asked for any details that would indicate
|
| // we should show a shipping section.
|
|
|