| Index: chrome/browser/autocomplete/autocomplete.h
|
| ===================================================================
|
| --- chrome/browser/autocomplete/autocomplete.h (revision 81359)
|
| +++ chrome/browser/autocomplete/autocomplete.h (working copy)
|
| @@ -670,6 +670,11 @@
|
| // the popup to ensure it's not showing an out-of-date query.
|
| void ExpireCopiedEntries();
|
|
|
| + // If |text| corresponds (in the sense of
|
| + // TemplateURLModel::CleanUserInputKeyword()) to an enabled, substituting
|
| + // keyword, returns that keyword; returns the empty string otherwise.
|
| + string16 GetKeywordForText(const string16& text) const;
|
| +
|
| SearchProvider* search_provider() const { return search_provider_; }
|
|
|
| // Getters
|
| @@ -713,6 +718,8 @@
|
| // invokes |ExpireCopiedEntries|.
|
| base::OneShotTimer<AutocompleteController> expire_timer_;
|
|
|
| + Profile* profile_;
|
| +
|
| // True if a query is not currently running.
|
| bool done_;
|
|
|
|
|