Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2364)

Unified Diff: chrome/browser/resources/settings/settings_ui/settings_ui.js

Issue 2235793002: MD Settings: remove appeal and (Coming soon) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/resources/settings/settings_ui/settings_ui.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « chrome/browser/resources/settings/settings_ui/settings_ui.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698