| Index: chrome/browser/resources/options/font_settings_ui.js
|
| diff --git a/chrome/browser/resources/options/font_settings_ui.js b/chrome/browser/resources/options/font_settings_ui.js
|
| index d53557a7cc63f96d5f971ed3561004a9774c2b86..4af8141b58d0d0875eccc9eab3d6affe68494c9f 100644
|
| --- a/chrome/browser/resources/options/font_settings_ui.js
|
| +++ b/chrome/browser/resources/options/font_settings_ui.js
|
| @@ -58,20 +58,6 @@ cr.define('options', function() {
|
| }
|
| });
|
| },
|
| -
|
| - /**
|
| - * Sets up options in select element.
|
| - * @param {Array} options List of option and their display text.
|
| - * Each element in the array is an array of length 2 which contains options
|
| - * value in the first element and display text in the second element.
|
| - *
|
| - * TODO(zelidrag): move this to that i18n template classes.
|
| - */
|
| - initializeValues: function(options) {
|
| - options.forEach(function(values) {
|
| - this.appendChild(new Option(values[1], values[0]));
|
| - }, this);
|
| - }
|
| };
|
|
|
| // Export
|
|
|