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

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

Issue 1542833003: Settings: Trivial fix for Basic page closure compile error. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add one more missing line Created 5 years 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 | « no previous file | chrome/browser/resources/settings/basic_page/compiled_resources.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/settings/basic_page/basic_page.js
diff --git a/chrome/browser/resources/settings/basic_page/basic_page.js b/chrome/browser/resources/settings/basic_page/basic_page.js
index b215d0999a5ad06752a6bfd716fb0d87a3002ccf..4439fb1179f73a0e8663596824d51bd7f5696117 100644
--- a/chrome/browser/resources/settings/basic_page/basic_page.js
+++ b/chrome/browser/resources/settings/basic_page/basic_page.js
@@ -36,9 +36,15 @@ Polymer({
notify: true,
},
+ /**
+ * True if the basic page should currently display the reset profile banner.
+ * @private {boolean}
+ */
showResetProfileBanner_: {
type: Boolean,
- value: loadTimeData.getBoolean('showResetProfileBanner'),
+ value: function() {
+ return loadTimeData.getBoolean('showResetProfileBanner');
+ },
},
},
« no previous file with comments | « no previous file | chrome/browser/resources/settings/basic_page/compiled_resources.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698