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

Side by Side Diff: chrome/browser/resources/options/chromeos/stylus_overlay.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 <div id="stylus-overlay" class="page" hidden> 1 <div id="stylus-overlay" class="page" hidden>
2 <div class="close-button"></div> 2 <div class="close-button"></div>
3 <h1 i18n-content="stylusOverlay"></h1> 3 <h1 i18n-content="stylusOverlay"></h1>
4 <div class="content-area"> 4 <div class="content-area">
5 <div class="option-control-table"> 5 <div class="option-control-table">
6 <div class="option-name"> 6 <div class="option-name">
7 <div class="checkbox controlled-setting-with-label"> 7 <div class="checkbox controlled-setting-with-label">
8 <label> 8 <label>
9 <input pref="settings.enable_stylus_tools" type="checkbox">
10 <span i18n-content="stylusEnableStylusTools"></span>
11 </label>
12 </div>
13 <div class="checkbox controlled-setting-with-label">
14 <label>
9 <input pref="settings.launch_palette_on_eject_event" 15 <input pref="settings.launch_palette_on_eject_event"
10 type="checkbox"> 16 type="checkbox">
11 <span i18n-content="stylusAutoOpenStylusTools"></span> 17 <span i18n-content="stylusAutoOpenStylusTools"></span>
12 </label> 18 </label>
13 </div> 19 </div>
14 </div> 20 </div>
15 </div> 21 </div>
16 22
17 <!-- TODO(jdufault): Real webstore link --> 23 <!-- TODO(jdufault): Real webstore link -->
18 <a is="action-link" i18n-content="stylusFindMoreApps" target="_blank" 24 <a is="action-link" i18n-content="stylusFindMoreApps" target="_blank"
19 id='stylus-find-more-link' 25 id='stylus-find-more-link'
20 href="https://play.google.com/store/apps/collection/promotion_30023cb_sty lus_apps"></a> 26 href="https://play.google.com/store/apps/collection/promotion_30023cb_sty lus_apps"></a>
21 </div> 27 </div>
22 28
23 <div class="action-area"> 29 <div class="action-area">
24 <div class="button-strip"> 30 <div class="button-strip">
25 <button id="stylus-cancel" type="reset" i18n-content="cancel"></button> 31 <button id="stylus-cancel" type="reset" i18n-content="cancel"></button>
26 <button id="stylus-confirm" class="default-button" type="submit" 32 <button id="stylus-confirm" class="default-button" type="submit"
27 i18n-content="ok"> 33 i18n-content="ok">
28 </button> 34 </button>
29 </div> 35 </div>
30 </div> 36 </div>
31 </div> 37 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698