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

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

Issue 1144963006: chrome/settings: Implement the 'get themes' button. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 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 unified diff | Download patch
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 * @fileoverview 6 * @fileoverview
7 * 'cr-settings-appearance-page' is the settings page containing appearance 7 * 'cr-settings-appearance-page' is the settings page containing appearance
8 * settings. 8 * settings.
9 * 9 *
10 * Example: 10 * Example:
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 65
66 /** 66 /**
67 * Name of the 'iron-icon' to show. 67 * Name of the 'iron-icon' to show.
68 */ 68 */
69 icon: { 69 icon: {
70 type: String, 70 type: String,
71 value: 'home', 71 value: 'home',
72 readOnly: true, 72 readOnly: true,
73 }, 73 },
74 }, 74 },
75
76 /** @private */
77 openThemesGallery_: function() {
78 window.open(loadTimeData.getString('themesGalleryUrl'));
79 },
75 }); 80 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698