Index: chrome/browser/autocomplete/autocomplete_controller.h |
diff --git a/chrome/browser/autocomplete/autocomplete_controller.h b/chrome/browser/autocomplete/autocomplete_controller.h |
index 51794ce1303b192a82efed4b598955e4dde92e12..ed38d4189560adae5ea8f87c4d318b2f4c008bff 100644 |
--- a/chrome/browser/autocomplete/autocomplete_controller.h |
+++ b/chrome/browser/autocomplete/autocomplete_controller.h |
@@ -21,7 +21,6 @@ |
class KeywordProvider; |
class Profile; |
class SearchProvider; |
-class TemplateURLService; |
class ZeroSuggestProvider; |
// The AutocompleteController is the center of the autocomplete system. A |
@@ -48,10 +47,8 @@ |
public: |
// |provider_types| is a bitmap containing AutocompleteProvider::Type values |
// that will (potentially, depending on platform, flags, etc.) be |
- // instantiated. |template_url_service| is used to create URLs from the |
- // autocomplete results. |
+ // instantiated. |
AutocompleteController(Profile* profile, |
- TemplateURLService* template_url_service, |
AutocompleteControllerDelegate* delegate, |
int provider_types); |
~AutocompleteController(); |
@@ -240,7 +237,7 @@ |
// notifications until Start() has been invoked on all providers. |
bool in_start_; |
- TemplateURLService* template_url_service_; |
+ Profile* profile_; |
DISALLOW_COPY_AND_ASSIGN(AutocompleteController); |
}; |