diff options
author | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-29 17:53:21 +0000 |
---|---|---|
committer | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-29 17:53:21 +0000 |
commit | 90085af068d552aa301e2ea7408cb6847cdc591e (patch) | |
tree | e7ed2538a78794a32a5bcce47ab7505e7b4bf4c1 /chrome/browser/autocomplete/autocomplete_edit.h | |
parent | ebdc76943e8909d261b6d776ed973a16c0086341 (diff) | |
download | chromium_src-90085af068d552aa301e2ea7408cb6847cdc591e.zip chromium_src-90085af068d552aa301e2ea7408cb6847cdc591e.tar.gz chromium_src-90085af068d552aa301e2ea7408cb6847cdc591e.tar.bz2 |
Factor search vs. navigate classification into its own file to make it more broadly usable. Patch by Thiago Farina (see http://codereview.chromium.org/328031 ), r=me.
BUG=21317
TEST=none
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30473 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/autocomplete/autocomplete_edit.h')
-rw-r--r-- | chrome/browser/autocomplete/autocomplete_edit.h | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/chrome/browser/autocomplete/autocomplete_edit.h b/chrome/browser/autocomplete/autocomplete_edit.h index 741b8a0..a4f4e69 100644 --- a/chrome/browser/autocomplete/autocomplete_edit.h +++ b/chrome/browser/autocomplete/autocomplete_edit.h @@ -101,7 +101,7 @@ class AutocompleteEditModel : public NotificationObserver { AutocompleteEditModel(AutocompleteEditView* view, AutocompleteEditController* controller, Profile* profile); - ~AutocompleteEditModel(); + ~AutocompleteEditModel() {} void SetPopupModel(AutocompletePopupModel* popup_model); @@ -334,18 +334,6 @@ class AutocompleteEditModel : public NotificationObserver { bool* is_history_what_you_typed_match, GURL* alternate_nav_url) const; - // Performs a query for only the synchronously available matches for the - // current input, sets |transition|, |is_history_what_you_typed_match|, and - // |alternate_nav_url| (if applicable) based on the default match, and returns - // its url. |transition|, |is_history_what_you_typed_match| and/or - // |alternate_nav_url| may be null, in which case they are not updated. - // - // If there are no matches for the input, leaves the outparams unset and - // returns the empty string. - GURL URLsForDefaultMatch(PageTransition::Type* transition, - bool* is_history_what_you_typed_match, - GURL* alternate_nav_url) const; - AutocompleteEditView* view_; AutocompletePopupModel* popup_; |