Index: chrome/browser/autocomplete/history_url_provider.h |
diff --git a/chrome/browser/autocomplete/history_url_provider.h b/chrome/browser/autocomplete/history_url_provider.h |
index 6a97dff894c6799cbd12817ecf9e62911eb7fa7b..e073cdc603f8d82f194a1e37b77c717550dd5bdd 100644 |
--- a/chrome/browser/autocomplete/history_url_provider.h |
+++ b/chrome/browser/autocomplete/history_url_provider.h |
@@ -190,7 +190,9 @@ class HistoryURLProvider : public HistoryProvider { |
static const int kScoreForWhatYouTypedResult; |
static const int kBaseScoreForNonInlineableResult; |
- HistoryURLProvider(AutocompleteProviderListener* listener, Profile* profile); |
+ HistoryURLProvider(scoped_ptr<AutocompleteProviderClient> client, |
+ AutocompleteProviderListener* listener, |
+ Profile* profile); |
// HistoryProvider: |
void Start(const AutocompleteInput& input, |
@@ -324,6 +326,7 @@ class HistoryURLProvider : public HistoryProvider { |
MatchType match_type, |
int relevance); |
+ Profile* profile_; |
AutocompleteProviderListener* listener_; |
// Params for the current query. The provider should not free this directly; |