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

Side by Side Diff: chrome/browser/resources/settings/printing_page/cloud_printers.html

Issue 2356653002: [MD settings] icons for clickable rows (Closed)
Patch Set: review nits Created 4 years, 2 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 <link rel="import" href="chrome://resources/html/polymer.html"> 1 <link rel="import" href="chrome://resources/html/polymer.html">
2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html">
3 <link rel="import" href="/controls/settings_checkbox.html"> 3 <link rel="import" href="/controls/settings_checkbox.html">
4 <link rel="import" href="/settings_shared_css.html"> 4 <link rel="import" href="/settings_shared_css.html">
5 5
6 <dom-module id="settings-cloud-printers"> 6 <dom-module id="settings-cloud-printers">
7 <template> 7 <template>
8 <style include="settings-shared"></style> 8 <style include="settings-shared"></style>
9 <div class="settings-box first"> 9 <div class="settings-box first">
10 <span> 10 <span>
11 $i18n{printingCloudPrintLearnMoreLabel} 11 $i18n{printingCloudPrintLearnMoreLabel}
12 <a href="$i18n{printingCloudPrintLearnMoreUrl}" target="_blank"> 12 <a href="$i18n{printingCloudPrintLearnMoreUrl}" target="_blank">
13 $i18n{learnMore} 13 $i18n{learnMore}
14 </a> 14 </a>
15 </span> 15 </span>
16 </div> 16 </div>
17 <div class="settings-box"> 17 <div class="settings-box">
18 <settings-checkbox pref="{{prefs.local_discovery.notifications_enabled}}" 18 <settings-checkbox pref="{{prefs.local_discovery.notifications_enabled}}"
19 label="$i18n{printingNotificationsLabel}"></settings-checkbox> 19 label="$i18n{printingNotificationsLabel}"></settings-checkbox>
20 </div> 20 </div>
21 <div class="settings-box"> 21 <div class="settings-box two-line" on-tap="onManageTap_" actionable>
22 <paper-button class="primary-button" on-tap="onManageTap_" actionable> 22 <div class="start">
23 $i18n{printingManageCloudPrintDevices} 23 $i18n{printingManageCloudPrintDevices}
24 </paper-button> 24 <div class="secondary">
25 $i18n{printingManageCloudPrintDevicesDescription}
26 </div>
27 </div>
28 <button class="icon-external" is="paper-icon-button-light"></button>
25 </div> 29 </div>
26 </template> 30 </template>
27 <script src="cloud_printers.js"></script> 31 <script src="cloud_printers.js"></script>
28 </dom-module> 32 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698