| Index: chrome/browser/search_engines/template_url.h
|
| diff --git a/chrome/browser/search_engines/template_url.h b/chrome/browser/search_engines/template_url.h
|
| index af104407a789b27d47e356d37387d8d8a34d3f7f..3d7553c4b4adbf83c5ab660db63f7618294f1322 100644
|
| --- a/chrome/browser/search_engines/template_url.h
|
| +++ b/chrome/browser/search_engines/template_url.h
|
| @@ -70,6 +70,11 @@ class TemplateURLRef {
|
|
|
| // TODO: Remove along with "aq" CGI param.
|
| int accepted_suggestion;
|
| +
|
| + // The 0-based position of the cursor within the query string at the time
|
| + // the request was issued. Set to string16::npos if not used or after the
|
| + // last character.
|
| + size_t cursor_position;
|
| };
|
|
|
| TemplateURLRef(TemplateURL* owner, Type type);
|
| @@ -157,6 +162,7 @@ class TemplateURLRef {
|
| GOOGLE_ASSISTED_QUERY_STATS,
|
| GOOGLE_BASE_URL,
|
| GOOGLE_BASE_SUGGEST_URL,
|
| + GOOGLE_CURSOR_POSITION,
|
| GOOGLE_INSTANT_ENABLED,
|
| GOOGLE_ORIGINAL_QUERY_FOR_SUGGESTION,
|
| GOOGLE_RLZ,
|
|
|