Index: chrome/browser/autocomplete/autocomplete_match.h |
diff --git a/chrome/browser/autocomplete/autocomplete_match.h b/chrome/browser/autocomplete/autocomplete_match.h |
index 146586ea2f8a0667c70ad2263cfae3d89c556cf1..9c740943b65cd74b15d65bc2f5a915446918966b 100644 |
--- a/chrome/browser/autocomplete/autocomplete_match.h |
+++ b/chrome/browser/autocomplete/autocomplete_match.h |
@@ -247,6 +247,10 @@ struct AutocompleteMatch { |
// not be inline autocompleted. |
size_t inline_autocomplete_offset; |
+ // The completion suggested by instant, displayed in gray text besides |
+ // |fill_into_edit|. |
+ string16 gray_suggestion; |
Peter Kasting
2013/06/11 22:42:55
It doesn't seem right to put this on AutocompleteM
beaudoin
2013/06/14 21:39:38
I agree. For now I will just keep that gray text i
|
+ |
// The URL to actually load when the autocomplete item is selected. This URL |
// should be canonical so we can compare URLs with strcmp to avoid dupes. |
// It may be empty if there is no possible navigation. |
@@ -284,8 +288,7 @@ struct AutocompleteMatch { |
// for both explicit "keyword mode" matches as well as matches for the default |
// search provider (so, any match for which we're doing substitution); it |
// doesn't imply (alone) that the UI is going to show a keyword hint or |
- // keyword mode. For that, see GetKeywordUIState() or |
- // GetSubstitutingExplicitlyInvokedKeyword(). |
+ // keyword mode. For that, see GetSubstitutingExplicitlyInvokedKeyword(). |
// |
// CAUTION: The TemplateURL associated with this keyword may be deleted or |
// modified while the AutocompleteMatch is alive. This means anyone who |