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

Unified Diff: components/autofill/core/browser/autocomplete_history_manager.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: 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_;

Powered by Google App Engine
This is Rietveld 408576698