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

Side by Side Diff: chrome/browser/resources/options/startup_section.html

Issue 11198065: Add fourth batch of controlled setting indicators (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removed two obsoleted test cases. Created 8 years, 2 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 | Annotate | Revision Log
OLDNEW
1 <section id="startup-section" guest-visibility="hidden"> 1 <section id="startup-section" guest-visibility="hidden">
2 <h3 i18n-content="sectionTitleStartup"></h3> 2 <h3 i18n-content="sectionTitleStartup"></h3>
3 <div> 3 <div>
4 <div class="radio"> 4 <div class="radio">
5 <label> 5 <span class="controlled-setting-with-label">
6 <input id="startup-newtab" type="radio" name="startup" value="5" 6 <input id="startup-newtab" type="radio" name="startup" value="5"
7 pref="session.restore_on_startup" 7 pref="session.restore_on_startup"
8 metric="Options_Startup_NewTab"> 8 metric="Options_Startup_NewTab">
9 <span i18n-content="startupShowNewTab"></span> 9 <span>
10 </label> 10 <label for="startup-newtab" i18n-content="startupShowNewTab"></label>
11 <span class="controlled-setting-indicator"
12 pref="session.restore_on_startup" value="5">
13 </span>
14 </span>
15 </span>
11 </div> 16 </div>
12 <div class="radio"> 17 <div class="radio">
13 <label> 18 <span class="controlled-setting-with-label">
14 <input id="startup-restore-session" type="radio" name="startup" 19 <input id="startup-restore-session" type="radio" name="startup"
15 value="1" pref="session.restore_on_startup" 20 value="1" pref="session.restore_on_startup"
16 metric="Options_Startup_LastSession"> 21 metric="Options_Startup_LastSession">
17 <span i18n-content="startupRestoreLastSession"> 22 <span>
23 <label for="startup-restore-session"
24 i18n-content="startupRestoreLastSession">
25 </label>
26 <span class="controlled-setting-indicator"
27 pref="session.restore_on_startup" value="1">
28 </span>
18 </span> 29 </span>
19 </label> 30 </span>
20 </div> 31 </div>
21 <div class="radio"> 32 <div class="radio">
22 <label> 33 <span class="controlled-setting-with-label">
23 <input id="startup-show-pages" type="radio" name="startup" 34 <input id="startup-show-pages" type="radio" name="startup"
24 pref="session.restore_on_startup" 35 pref="session.restore_on_startup"
25 value="4" metric="Options_Startup_Custom"> 36 value="4" metric="Options_Startup_Custom">
26 <span> 37 <span>
27 <span i18n-content="startupShowPages"></span> 38 <label for="startup-show-pages" i18n-content="startupShowPages">
39 </label>
40 <span class="controlled-setting-indicator"
41 pref="session.restore_on_startup" value="4">
42 </span>
28 <button id="startup-set-pages" class="link-button" 43 <button id="startup-set-pages" class="link-button"
29 i18n-content="startupSetPages"></button> 44 i18n-content="startupSetPages">
45 </button>
46 <span class="controlled-setting-indicator"
47 pref="session.urls_to_restore_on_startup">
48 </span>
30 </span> 49 </span>
31 </label> 50 </label>
32 </div> 51 </div>
33 </div> 52 </div>
34 </section> 53 </section>
OLDNEW
« no previous file with comments | « chrome/browser/resources/options/browser_options.js ('k') | chrome/test/data/policy/policy_test_cases.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698