summaryrefslogtreecommitdiffstats
path: root/chrome/browser/autocomplete/autocomplete_edit.h
diff options
context:
space:
mode:
authorsky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-19 23:14:27 +0000
committersky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-19 23:14:27 +0000
commita4fa52f5aa6d0d770ac0adbbfafdb47204eaa24c (patch)
treeebf0c961f281bdda869cf7617171d3f0bb710f4a /chrome/browser/autocomplete/autocomplete_edit.h
parentb2d4e293db87c70ea5d8e3d8254cd6ff7b1c87e0 (diff)
downloadchromium_src-a4fa52f5aa6d0d770ac0adbbfafdb47204eaa24c.zip
chromium_src-a4fa52f5aa6d0d770ac0adbbfafdb47204eaa24c.tar.gz
chromium_src-a4fa52f5aa6d0d770ac0adbbfafdb47204eaa24c.tar.bz2
Removes some code we no longer care about.
BUG=none TEST=none Review URL: http://codereview.chromium.org/6359002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@71866 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/autocomplete/autocomplete_edit.h')
-rw-r--r--chrome/browser/autocomplete/autocomplete_edit.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/chrome/browser/autocomplete/autocomplete_edit.h b/chrome/browser/autocomplete/autocomplete_edit.h
index 83c87c3..ea70b84 100644
--- a/chrome/browser/autocomplete/autocomplete_edit.h
+++ b/chrome/browser/autocomplete/autocomplete_edit.h
@@ -56,9 +56,6 @@ class AutocompleteEditController {
// Returns false if there is no instant preview showing.
virtual bool AcceptCurrentInstantPreview() = 0;
- // Sets the suggested search text to |suggested_text|.
- virtual void OnSetSuggestedSearchText(const string16& suggested_text) = 0;
-
// Invoked when the popup is going to change its bounds to |bounds|.
virtual void OnPopupBoundsChanged(const gfx::Rect& bounds) = 0;
@@ -339,9 +336,6 @@ class AutocompleteEditModel : public NotificationObserver {
// Invoked when the popup is going to change its bounds to |bounds|.
void PopupBoundsChangedTo(const gfx::Rect& bounds);
- // Invoked when the autocomplete results may have changed in some way.
- void ResultsUpdated();
-
private:
enum PasteState {
NONE, // Most recent edit was not a paste that replaced all text.
@@ -399,10 +393,6 @@ class AutocompleteEditModel : public NotificationObserver {
// copy.
bool GetURLForText(const std::wstring& text, GURL* url) const;
- // Determines the suggested search text and invokes OnSetSuggestedSearchText
- // on the controller.
- void UpdateSuggestedSearchText();
-
AutocompleteEditView* view_;
AutocompletePopupModel* popup_;