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

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

Issue 8729009: Implement an AutoLaunch experiment for Chrome for certain brand codes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years 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 <div id="browserPage" class="page" hidden> 1 <div id="browserPage" class="page" hidden>
2 <h1 i18n-content="browserPage"></h1> 2 <h1 i18n-content="browserPage"></h1>
3 <div class="displaytable"> 3 <div class="displaytable">
4 <section id="startupSection"> 4 <section id="startupSection">
5 <h3 i18n-content="startupGroupName"></h3> 5 <h3 i18n-content="startupGroupName"></h3>
6 <div> 6 <div>
7 <div class="radio"> 7 <div class="radio">
8 <label> 8 <label>
9 <input type="radio" name="startup" value="0" 9 <input type="radio" name="startup" value="0"
10 pref="session.restore_on_startup" 10 pref="session.restore_on_startup"
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 </div> 114 </div>
115 </section> 115 </section>
116 <if expr="not pp_ifdef('chromeos')"> 116 <if expr="not pp_ifdef('chromeos')">
117 <section> 117 <section>
118 <h3 i18n-content="defaultBrowserGroupName"></h3> 118 <h3 i18n-content="defaultBrowserGroupName"></h3>
119 <div> 119 <div>
120 <button id="defaultBrowserUseAsDefaultButton" 120 <button id="defaultBrowserUseAsDefaultButton"
121 i18n-content="defaultBrowserUseAsDefault"></button> 121 i18n-content="defaultBrowserUseAsDefault"></button>
122 <div id="defaultBrowserState" 122 <div id="defaultBrowserState"
123 i18n-content="defaultBrowserUnknown"></div> 123 i18n-content="defaultBrowserUnknown"></div>
124 <span id="autoLaunchOption" hidden>
stuartmorgan 2011/12/01 10:11:44 This should almost certainly be a <div class="chec
125 <input id="autoLaunch" type="checkbox">
126 <span i18n-content="autoLaunchText"></span>
127 </span>
stuartmorgan 2011/12/01 10:11:44 Labels need to use the <label> construct; see else
124 </div> 128 </div>
125 </section> 129 </section>
126 </if> 130 </if>
127 </div> 131 </div>
128 </div> 132 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698