summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormpearson@chromium.org <mpearson@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-04-06 10:23:49 +0000
committermpearson@chromium.org <mpearson@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-04-06 10:23:49 +0000
commit031860c318bf1bd5cf9e4a3f6979306f15b2e539 (patch)
tree6154253852079eabe925505ca6dccc52969882dc
parent2e7053c9c92f081dd9cbe670c3eaa2beb9d964c5 (diff)
downloadchromium_src-031860c318bf1bd5cf9e4a3f6979306f15b2e539.zip
chromium_src-031860c318bf1bd5cf9e4a3f6979306f15b2e539.tar.gz
chromium_src-031860c318bf1bd5cf9e4a3f6979306f15b2e539.tar.bz2
Clean Up about:omnibox
Moves something from an unnamed extra column to a named column. Also adds a tooltip for an existing column. BUG=139696 Review URL: https://chromiumcodereview.appspot.com/13598023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@192736 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--chrome/browser/resources/omnibox/omnibox.js7
1 files changed, 6 insertions, 1 deletions
diff --git a/chrome/browser/resources/omnibox/omnibox.js b/chrome/browser/resources/omnibox/omnibox.js
index dd49ce9..fd327fa 100644
--- a/chrome/browser/resources/omnibox/omnibox.js
+++ b/chrome/browser/resources/omnibox/omnibox.js
@@ -145,7 +145,12 @@ cr.define('omniboxDebug', function() {
new PresentationInfoRecord(
'Template URL', '', 'template_url', false, ''),
new PresentationInfoRecord(
- 'Associated Keyword', '', 'associated_keyword', false, ''),
+ 'Associated Keyword', '', 'associated_keyword', false,
+ 'If non-empty, a "press tab to search" hint will be shown and will ' +
+ 'engage this keyword.'),
+ new PresentationInfoRecord(
+ 'Keyword', '', 'keyword', false,
+ 'The keyword of the search engine to be used.'),
new PresentationInfoRecord(
'Additional Info', '', 'additional_info', false,
'Provider-specific information about the result.')