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

Unified Diff: components/autofill/content/browser/content_autofill_driver.h

Issue 306053008: Rename AutofillManagerDelegate to AutofillClient. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: One more Android fix Created 6 years, 7 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: components/autofill/content/browser/content_autofill_driver.h
diff --git a/components/autofill/content/browser/content_autofill_driver.h b/components/autofill/content/browser/content_autofill_driver.h
index ea2187938d027e9f00885cce045ef6067ca58db8..0bb69347e1e3b4bed61e730eb46188f6c03957a1 100644
--- a/components/autofill/content/browser/content_autofill_driver.h
+++ b/components/autofill/content/browser/content_autofill_driver.h
@@ -26,7 +26,7 @@ class Message;
namespace autofill {
class AutofillContext;
-class AutofillManagerDelegate;
+class AutofillClient;
// Class that drives autofill flow in the browser process based on
// communication from the renderer and from the external world. There is one
@@ -37,7 +37,7 @@ class ContentAutofillDriver : public AutofillDriver,
public:
static void CreateForWebContentsAndDelegate(
content::WebContents* contents,
- autofill::AutofillManagerDelegate* delegate,
+ AutofillClient* client,
const std::string& app_locale,
AutofillManager::AutofillDownloadManagerState enable_download_manager);
static ContentAutofillDriver* FromWebContents(content::WebContents* contents);
@@ -73,7 +73,7 @@ class ContentAutofillDriver : public AutofillDriver,
protected:
ContentAutofillDriver(
content::WebContents* web_contents,
- autofill::AutofillManagerDelegate* delegate,
+ AutofillClient* client,
const std::string& app_locale,
AutofillManager::AutofillDownloadManagerState enable_download_manager);
virtual ~ContentAutofillDriver();

Powered by Google App Engine
This is Rietveld 408576698