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

Unified Diff: chrome/browser/resources/settings/appearance_page/appearance_fonts_page.js

Issue 2818163002: MD Settings: Move various non-Polymer properties outside of "properties". (Closed)
Patch Set: fix tests Created 3 years, 8 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 | « no previous file | chrome/browser/resources/settings/people_page/change_picture.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/settings/appearance_page/appearance_fonts_page.js
diff --git a/chrome/browser/resources/settings/appearance_page/appearance_fonts_page.js b/chrome/browser/resources/settings/appearance_page/appearance_fonts_page.js
index e9ca220be5fc5d4a81903a7782056d3b79f3c76b..ca60421a8af5ab38aa74b3548242434bacfdc9ed 100644
--- a/chrome/browser/resources/settings/appearance_page/appearance_fonts_page.js
+++ b/chrome/browser/resources/settings/appearance_page/appearance_fonts_page.js
@@ -39,14 +39,8 @@
properties: {
/** @private */
- advancedExtensionInstalled_: Boolean,
-
- /** @private */
advancedExtensionSublabel_: String,
- /** @private */
- advancedExtensionUrl_: String,
-
/** @private {!DropdownMenuOptionList} */
fontOptions_: Object,
@@ -85,13 +79,19 @@
},
},
+ /** @private {?settings.FontsBrowserProxy} */
+ browserProxy_: null,
+
+ /** @private {boolean} */
+ advancedExtensionInstalled_: false,
+
+ /** @private {?string} */
+ advancedExtensionUrl_: null,
+
observers: [
'fontSizeChanged_(prefs.webkit.webprefs.default_font_size.value)',
],
- /** @private {?settings.FontsBrowserProxy} */
- browserProxy_: null,
-
/** @override */
created: function() {
this.browserProxy_ = settings.FontsBrowserProxyImpl.getInstance();
« no previous file with comments | « no previous file | chrome/browser/resources/settings/people_page/change_picture.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698