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

Side by Side Diff: chrome/browser/resources/settings/appearance_page/appearance_page.js

Issue 1457383006: MD Settings: Lazy create fonts page (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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 unified diff | Download patch
« no previous file with comments | « chrome/browser/resources/settings/appearance_page/appearance_page.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 /** 5 /**
6 * 'settings-appearance-page' is the settings page containing appearance 6 * 'settings-appearance-page' is the settings page containing appearance
7 * settings. 7 * settings.
8 * 8 *
9 * Example: 9 * Example:
10 * 10 *
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 92
93 /** @private */ 93 /** @private */
94 openThemesGallery_: function() { 94 openThemesGallery_: function() {
95 window.open(loadTimeData.getString('themesGalleryUrl')); 95 window.open(loadTimeData.getString('themesGalleryUrl'));
96 }, 96 },
97 97
98 /** @private */ 98 /** @private */
99 resetTheme_: function() { 99 resetTheme_: function() {
100 chrome.send('resetTheme'); 100 chrome.send('resetTheme');
101 }, 101 },
102
Dan Beam 2015/11/21 01:35:59 nit: /** @private */
michaelpg 2015/11/21 01:38:44 Done.
103 showFontsPage_: function() {
104 return this.currentRoute.subpage[0] == 'appearance-fonts';
105 },
102 }); 106 });
OLDNEW
« no previous file with comments | « chrome/browser/resources/settings/appearance_page/appearance_page.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698