Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(699)

Unified Diff: chrome/browser/autocomplete/autocomplete_edit_view_gtk.h

Issue 6252003: Accept keyword by pressing space. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Only allow 0x0020 and 0x3000 for now. Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/autocomplete/autocomplete_edit_view_gtk.h
diff --git a/chrome/browser/autocomplete/autocomplete_edit_view_gtk.h b/chrome/browser/autocomplete/autocomplete_edit_view_gtk.h
index ee61f0c81d723ca4d6b01e3b77af4492ebe90d2c..50426bbc4817a81086bb17a1d288af233a1f84a9 100644
--- a/chrome/browser/autocomplete/autocomplete_edit_view_gtk.h
+++ b/chrome/browser/autocomplete/autocomplete_edit_view_gtk.h
@@ -185,13 +185,6 @@ class AutocompleteEditViewGtk : public AutocompleteEditView,
bool CommitInstantSuggestion();
- // Used by LocationBarViewGtk to inform AutocompleteEditViewGtk if the tab to
- // search should be enabled or not. See the comment of |enable_tab_to_search_|
- // for details.
- void set_enable_tab_to_search(bool enable) {
- enable_tab_to_search_ = enable;
- }
-
GtkWidget* text_view() {
return text_view_;
}
@@ -495,11 +488,6 @@ class AutocompleteEditViewGtk : public AutocompleteEditView,
// is needed.
CharRange strikethrough_;
- // Indicate if the tab to search should be enabled or not. It's true by
- // default and will only be set to false if the location bar view is not able
- // to show the tab to search hint.
- bool enable_tab_to_search_;
-
// Indicates if the selected text is suggested text or not. If the selection
// is not suggested text, that means the user manually made the selection.
bool selection_suggested_;

Powered by Google App Engine
This is Rietveld 408576698