| Index: chrome/browser/resources/settings/settings_ui/settings_ui.js
|
| diff --git a/chrome/browser/resources/settings/settings_ui/settings_ui.js b/chrome/browser/resources/settings/settings_ui/settings_ui.js
|
| index 521612768f0204b6d71ca9876251eeef0d6224ae..c082ebd04fda15dafec317c9cf271024809a0124 100644
|
| --- a/chrome/browser/resources/settings/settings_ui/settings_ui.js
|
| +++ b/chrome/browser/resources/settings/settings_ui/settings_ui.js
|
| @@ -25,36 +25,6 @@ Polymer({
|
| type: Object,
|
| },
|
|
|
| - /** @private */
|
| - appealClosed_: {
|
| - type: Boolean,
|
| - value: function() {
|
| - return !!(window.sessionStorage.appealClosed_ ||
|
| - window.localStorage.appealClosed_);
|
| - },
|
| - },
|
| -
|
| - /** @private */
|
| - appealBugUrl_: {
|
| - type: String,
|
| - value: function() {
|
| - var url =
|
| - 'https://bugs.chromium.org/p/chromium/issues/entry?' +
|
| - 'labels=Proj-MaterialDesign-WebUI,Pri-2,Type-Bug&' +
|
| - 'components=UI%3ESettings&description=';
|
| - var description =
|
| - 'What steps will reproduce the problem?\n' +
|
| - '(1) \n(2) \n(3) \n\nWhat is the expected result?\n\n\n' +
|
| - 'What happens instead?\n\n\nPlease provide any additional ' +
|
| - 'information below. Attach a screenshot if possible.\n\n';
|
| - var version = navigator.userAgent.match(/Chrom(?:e|ium)\/([\d.]+)/);
|
| - if (version)
|
| - description += 'Version: ' + version[1];
|
| - url += encodeURIComponent(description);
|
| - return url;
|
| - },
|
| - },
|
| -
|
| /** @private {boolean} */
|
| toolbarSpinnerActive_: {
|
| type: Boolean,
|
| @@ -121,11 +91,6 @@ Polymer({
|
| }
|
| },
|
|
|
| - /** @private */
|
| - onCloseAppealTap_: function() {
|
| - window.sessionStorage.appealClosed_ = this.appealClosed_ = true;
|
| - },
|
| -
|
| /**
|
| * @param {Event} event
|
| * @private
|
|
|