Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(178)

Unified Diff: chrome/browser/ui/autofill/autofill_dialog_controller_impl.h

Issue 306053008: Rename AutofillManagerDelegate to AutofillClient. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/autofill/autofill_dialog_controller_impl.h
diff --git a/chrome/browser/ui/autofill/autofill_dialog_controller_impl.h b/chrome/browser/ui/autofill/autofill_dialog_controller_impl.h
index fb92f35cad97b7d2a9061310d15692d5e7a5761e..afd84e2348289a8ff2e3f2326b137850d9f9b1bb 100644
--- a/chrome/browser/ui/autofill/autofill_dialog_controller_impl.h
+++ b/chrome/browser/ui/autofill/autofill_dialog_controller_impl.h
@@ -24,7 +24,7 @@
#include "components/autofill/content/browser/wallet/wallet_client_delegate.h"
#include "components/autofill/content/browser/wallet/wallet_items.h"
#include "components/autofill/content/browser/wallet/wallet_signin_helper_delegate.h"
-#include "components/autofill/core/browser/autofill_manager_delegate.h"
+#include "components/autofill/core/browser/autofill_client.h"
#include "components/autofill/core/browser/autofill_metrics.h"
#include "components/autofill/core/browser/autofill_popup_delegate.h"
#include "components/autofill/core/browser/field_types.h"
@@ -87,7 +87,7 @@ class AutofillDialogControllerImpl
content::WebContents* contents,
const FormData& form_structure,
const GURL& source_url,
- const AutofillManagerDelegate::ResultCallback& callback);
+ const AutofillClient::ResultCallback& callback);
// AutofillDialogController implementation.
virtual void Show() OVERRIDE;
@@ -233,11 +233,10 @@ class AutofillDialogControllerImpl
};
// Exposed for testing.
- AutofillDialogControllerImpl(
- content::WebContents* contents,
- const FormData& form_structure,
- const GURL& source_url,
- const AutofillManagerDelegate::ResultCallback& callback);
+ AutofillDialogControllerImpl(content::WebContents* contents,
+ const FormData& form_structure,
+ const GURL& source_url,
+ const AutofillClient::ResultCallback& callback);
// Exposed for testing.
AutofillDialogView* view() { return view_.get(); }
@@ -640,7 +639,7 @@ class AutofillDialogControllerImpl
GURL source_url_;
// The callback via which we return the collected data.
- AutofillManagerDelegate::ResultCallback callback_;
+ AutofillClient::ResultCallback callback_;
// The AccountChooserModel acts as the MenuModel for the account chooser,
// and also tracks which data source the dialog is using.

Powered by Google App Engine
This is Rietveld 408576698