| Index: chrome/browser/resources/options/handler_options_list.js
|
| diff --git a/chrome/browser/resources/options/handler_options_list.js b/chrome/browser/resources/options/handler_options_list.js
|
| index 5572a55445f2965f1891ba033a4f19e58bcbc21a..385fd17e24433b7dc5974683925071b6e1cd5034 100644
|
| --- a/chrome/browser/resources/options/handler_options_list.js
|
| +++ b/chrome/browser/resources/options/handler_options_list.js
|
| @@ -14,7 +14,7 @@ cr.define('options', function() {
|
| * Creates a new ignored protocol / content handler list item.
|
| *
|
| * Accepts values in the form
|
| - * ['mailto', 'http://www.thesite.com/%s', 'The title of the protocol'],
|
| + * ['mailto', 'http://www.thesite.com/%s', 'www.thesite.com'],
|
| * @param {Object} entry A dictionary describing the handlers for a given
|
| * protocol.
|
| * @constructor
|
| @@ -41,12 +41,12 @@ cr.define('options', function() {
|
| protocolElement.className = 'handlers-type-column';
|
| this.contentElement_.appendChild(protocolElement);
|
|
|
| - // Site title.
|
| - var titleElement = document.createElement('div');
|
| - titleElement.textContent = this.dataItem[2];
|
| - titleElement.className = 'handlers-site-column';
|
| - titleElement.title = this.dataItem[1];
|
| - this.contentElement_.appendChild(titleElement);
|
| + // Host name.
|
| + var hostElement = document.createElement('div');
|
| + hostElement.textContent = this.dataItem[2];
|
| + hostElement.className = 'handlers-site-column';
|
| + hostElement.title = this.dataItem[1];
|
| + this.contentElement_.appendChild(hostElement);
|
| },
|
| };
|
|
|
| @@ -91,7 +91,7 @@ cr.define('options', function() {
|
| * Accepts values in the form
|
| * { protocol: 'mailto',
|
| * handlers: [
|
| - * ['mailto', 'http://www.thesite.com/%s', 'The title of the protocol'],
|
| + * ['mailto', 'http://www.thesite.com/%s', 'www.thesite.com'],
|
| * ...,
|
| * ],
|
| * }
|
|
|