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

Unified Diff: chrome/browser/resources/settings/device_page/note.html

Issue 2178213002: Add note page to settings. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@stylus-add-switch
Patch Set: Address comments and add utility method Created 4 years, 5 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/device_page/note.html
diff --git a/chrome/browser/resources/settings/device_page/note.html b/chrome/browser/resources/settings/device_page/note.html
new file mode 100644
index 0000000000000000000000000000000000000000..d92ca6ff205a6fe1fb96e555c73487a5115c858c
--- /dev/null
+++ b/chrome/browser/resources/settings/device_page/note.html
@@ -0,0 +1,29 @@
+<link rel="import" href="chrome://resources/html/action_link.html">
+<link rel="import" href="chrome://resources/html/polymer.html">
+<link rel="import" href="/controls/settings_checkbox.html">
+<link rel="import" href="/settings_shared_css.html">
+
+<dom-module id="settings-note">
+ <template>
+ <style include="settings-shared"></style>
+
+ <div class="settings-box">
+ <settings-checkbox
+ pref="{{prefs.settings.launch_note_app_on_eject_event}}"
+ label="$i18n{noteDefaultAppAutoLaunch}">
+ </settings-checkbox>
+ </div>
+
+ <div class="settings-box">
+ <!-- TODO(jdufault): This should launch an intent (using the
+ enable-intent-picker flag) that opens up the play store to a curated
+ list of apps. -->
+ <a is="action-link" target="_blank"
+ href="https://chrome.google.com/webstore/category/apps">
+ $i18n{noteFindMoreApps}
+ </a>
+ </div>
+
+ </template>
+ <script src="note.js"></script>
+</dom-module>
« no previous file with comments | « chrome/browser/resources/settings/device_page/device_page.js ('k') | chrome/browser/resources/settings/device_page/note.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698