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

Side by Side Diff: chrome/browser/resources/options/chromeos/note_overlay.html

Issue 2258553004: Add pref to enable/disable palette tray. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: Initial upload Created 4 years, 4 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="note-overlay" class="page" hidden> 1 <div id="note-overlay" class="page" hidden>
2 <div class="close-button"></div> 2 <div class="close-button"></div>
3 <h1 i18n-content="noteOverlay"></h1> 3 <h1 i18n-content="noteOverlay"></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_ash_palette"
10 type="checkbox">
stevenjb 2016/08/23 17:36:41 one line? If not, 4 space indent.
jdufault 2016/08/23 22:49:56 Done.
11 <span i18n-content="noteEnableAshPalette"></span>
12 </label>
13 </div>
14 <div class="checkbox controlled-setting-with-label">
15 <label>
9 <input pref="settings.launch_note_app_on_eject_event" 16 <input pref="settings.launch_note_app_on_eject_event"
10 type="checkbox"> 17 type="checkbox">
stevenjb 2016/08/23 17:36:41 Please fix this indent to 4 spaces also, thanks.
jdufault 2016/08/23 22:49:56 Done.
11 <span i18n-content="noteDefaultAppAutoLaunch"></span> 18 <span i18n-content="noteDefaultAppAutoLaunch"></span>
12 </label> 19 </label>
13 </div> 20 </div>
14 </div> 21 </div>
15 </div> 22 </div>
16 23
17 <!-- TODO(jdufault): Real webstore link --> 24 <!-- TODO(jdufault): Real webstore link -->
18 <a is="action-link" i18n-content="noteFindMoreApps" target="_blank" 25 <a is="action-link" i18n-content="noteFindMoreApps" target="_blank"
19 id='note-find-more-link' 26 id='note-find-more-link'
20 href="https://chrome.google.com/webstore/category/apps"></a> 27 href="https://chrome.google.com/webstore/category/apps"></a>
21 </div> 28 </div>
22 29
23 <div class="action-area"> 30 <div class="action-area">
24 <div class="button-strip"> 31 <div class="button-strip">
25 <button id="note-cancel" type="reset" i18n-content="cancel"></button> 32 <button id="note-cancel" type="reset" i18n-content="cancel"></button>
26 <button id="note-confirm" class="default-button" type="submit" 33 <button id="note-confirm" class="default-button" type="submit"
27 i18n-content="ok"> 34 i18n-content="ok">
28 </button> 35 </button>
29 </div> 36 </div>
30 </div> 37 </div>
31 </div> 38 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698