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

Unified Diff: chrome/browser/ui/omnibox/omnibox_edit_model.h

Issue 12792013: Instant extended: Remove suggest commit on lost focus (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix tests Created 7 years, 9 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/ui/omnibox/omnibox_edit_model.h
diff --git a/chrome/browser/ui/omnibox/omnibox_edit_model.h b/chrome/browser/ui/omnibox/omnibox_edit_model.h
index 1ca4635b63896cd3ed536813eb7dc1c53c201e14..c27ecd42fcd634571744e39eac5a827b42302ab6 100644
--- a/chrome/browser/ui/omnibox/omnibox_edit_model.h
+++ b/chrome/browser/ui/omnibox/omnibox_edit_model.h
@@ -64,6 +64,7 @@ class OmniboxEditModel : public AutocompleteControllerDelegate {
struct State {
State(bool user_input_in_progress,
const string16& user_text,
+ const string16& suggest_text,
const string16& keyword,
bool is_keyword_hint,
OmniboxFocusState focus_state);
@@ -71,6 +72,7 @@ class OmniboxEditModel : public AutocompleteControllerDelegate {
bool user_input_in_progress;
const string16 user_text;
+ const string16 suggest_text;
const string16 keyword;
const bool is_keyword_hint;
OmniboxFocusState focus_state;

Powered by Google App Engine
This is Rietveld 408576698