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

Unified Diff: chrome/browser/resources/settings/printing_page/printing_page.html

Issue 2017283002: MD Settings: implement printing page (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: asdf Created 4 years, 7 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
Index: chrome/browser/resources/settings/printing_page/printing_page.html
diff --git a/chrome/browser/resources/settings/printing_page/printing_page.html b/chrome/browser/resources/settings/printing_page/printing_page.html
new file mode 100644
index 0000000000000000000000000000000000000000..e9e547e81b2fdc6d374abe4cea8e19f933064381
--- /dev/null
+++ b/chrome/browser/resources/settings/printing_page/printing_page.html
@@ -0,0 +1,28 @@
+<link rel="import" href="chrome://resources/html/polymer.html">
+<link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-button.html">
+<link rel="import" href="/controls/settings_checkbox.html">
+<link rel="import" href="/settings_shared_css.html">
+
+<dom-module id="settings-printing-page">
+ <template>
+ <style include="settings-shared"></style>
+ <div class="settings-box first">
+ <span>
+ $i18n{printingCloudPrintLearnMoreLabel}
+ <a href="$i18n{printingCloudPrintLearnMoreUrl}" target="_blank">
+ $i18n{learnMore}
+ </a>
+ </span>
+ </div>
+ <div class="settings-box">
+ <settings-checkbox pref="{{prefs.local_discovery.notifications_enabled}}"
+ label="$i18n{printingNotificationsLabel}"></settings-checkbox>
+ </div>
+ <div class="settings-box">
+ <paper-button class="primary-button" on-tap="onManageTap_">
+ $i18n{printingManageCloudPrintDevices}
+ </paper-button>
+ </div>
+ </template>
+ <script src="printing_page.js"></script>
+</dom-module>
« no previous file with comments | « chrome/browser/resources/settings/icons.html ('k') | chrome/browser/resources/settings/printing_page/printing_page.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698