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

Side by Side Diff: chrome/browser/resources/settings/device_page/stylus.html

Issue 2258553004: Add pref to enable/disable palette tray. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: Rebase Created 4 years, 3 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/action_link.html"> 1 <link rel="import" href="chrome://resources/html/action_link.html">
2 <link rel="import" href="chrome://resources/html/polymer.html"> 2 <link rel="import" href="chrome://resources/html/polymer.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-stylus"> 6 <dom-module id="settings-stylus">
7 <template> 7 <template>
8 <style include="settings-shared"></style> 8 <style include="settings-shared"></style>
9 9
10 <div class="settings-box"> 10 <div class="settings-box">
11 <settings-checkbox 11 <settings-checkbox
12 pref="{{prefs.settings.enable_stylus_tools}}"
13 label="$i18n{stylusEnableStylusTools}">
14 </settings-checkbox>
15 </div>
16
17 <div class="settings-box continuation">
18 <settings-checkbox
12 pref="{{prefs.settings.launch_palette_on_eject_event}}" 19 pref="{{prefs.settings.launch_palette_on_eject_event}}"
13 label="$i18n{stylusAutoOpenStylusTools}"> 20 label="$i18n{stylusAutoOpenStylusTools}">
14 </settings-checkbox> 21 </settings-checkbox>
15 </div> 22 </div>
16 23
17 <div class="settings-box"> 24 <div class="settings-box">
18 <!-- TODO(jdufault): This should launch an intent (using the 25 <!-- TODO(jdufault): This should launch an intent (using the
19 enable-intent-picker flag) that opens up the play store to a curated 26 enable-intent-picker flag) that opens up the play store to a curated
20 list of apps. --> 27 list of apps. -->
21 <a is="action-link" target="_blank" 28 <a is="action-link" target="_blank"
22 href="https://play.google.com/store/apps/collection/promotion_30023cb_s tylus_apps"> 29 href="https://play.google.com/store/apps/collection/promotion_30023cb_s tylus_apps">
23 $i18n{stylusFindMoreApps} 30 $i18n{stylusFindMoreApps}
24 </a> 31 </a>
25 </div> 32 </div>
26 33
27 </template> 34 </template>
28 <script src="stylus.js"></script> 35 <script src="stylus.js"></script>
29 </dom-module> 36 </dom-module>
OLDNEW
« no previous file with comments | « chrome/browser/resources/options/chromeos/stylus_overlay.html ('k') | chrome/browser/ui/ash/palette_delegate_chromeos.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698