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

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

Issue 9317002: Make the auto-launch experiment profile-aware. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 8 years, 10 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 <div id="browserPage" class="page" hidden> 1 <div id="browserPage" class="page" hidden>
2 <header> 2 <header>
3 <h1 i18n-content="browserPage"></h1> 3 <h1 i18n-content="browserPage"></h1>
4 <span id="browser-options-search-field-container" 4 <span id="browser-options-search-field-container"
5 class="search-field-container"> 5 class="search-field-container">
6 <input id="search-field" type="search" 6 <input id="search-field" type="search"
7 i18n-values="placeholder:searchPlaceholder; 7 i18n-values="placeholder:searchPlaceholder;
8 aria-label:searchPlaceholder" incremental> 8 aria-label:searchPlaceholder" incremental>
9 </span> 9 </span>
10 </header> 10 </header>
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
243 </if> 243 </if>
244 </section> 244 </section>
245 <if expr="not pp_ifdef('chromeos')"> 245 <if expr="not pp_ifdef('chromeos')">
246 <section> 246 <section>
247 <h3 i18n-content="sectionTitleDefaultBrowser"></h3> 247 <h3 i18n-content="sectionTitleDefaultBrowser"></h3>
248 <div> 248 <div>
249 <button id="defaultBrowserUseAsDefaultButton" 249 <button id="defaultBrowserUseAsDefaultButton"
250 i18n-content="defaultBrowserUseAsDefault" hidden></button> 250 i18n-content="defaultBrowserUseAsDefault" hidden></button>
251 <div id="defaultBrowserState" 251 <div id="defaultBrowserState"
252 i18n-content="defaultBrowserUnknown"></div> 252 i18n-content="defaultBrowserUnknown"></div>
253 <div id="autoLaunchOption" class="checkbox" hidden>
James Hawkins 2012/02/06 21:08:01 nit: auto-launch-option I have a CL out for revie
254 <label id="autoLaunchLabel">
James Hawkins 2012/02/06 21:08:01 nit: auto-launch-label
255 <input id="autoLaunch" type="checkbox">
James Hawkins 2012/02/06 21:08:01 nit: auto-launch
256 <span i18n-content="autoLaunchText"></span>
257 </label>
258 </div>
253 </div> 259 </div>
254 </section> 260 </section>
255 </if> 261 </if>
256 <if expr="pp_ifdef('chromeos')"> 262 <if expr="pp_ifdef('chromeos')">
257 <!-- This section is temporarily duplicated here for ChromeOS. --> 263 <!-- This section is temporarily duplicated here for ChromeOS. -->
258 <!-- TODO(csilv): Move to 'Under the Hood' for ChromeOS only. --> 264 <!-- TODO(csilv): Move to 'Under the Hood' for ChromeOS only. -->
259 <!-- http://crbug.com/110527 --> 265 <!-- http://crbug.com/110527 -->
260 <section id="startupSection"> 266 <section id="startupSection">
261 <h3 i18n-content="sectionTitleStartup"></h3> 267 <h3 i18n-content="sectionTitleStartup"></h3>
262 <div> 268 <div>
(...skipping 30 matching lines...) Expand all
293 </section> 299 </section>
294 </if> 300 </if>
295 <section> 301 <section>
296 <h3 i18n-content="sectionTitleAdvanced"></h3> 302 <h3 i18n-content="sectionTitleAdvanced"></h3>
297 <div> 303 <div>
298 <button id="advancedOptionsButton" 304 <button id="advancedOptionsButton"
299 i18n-content="advancedOptionsButtonTitle"></button> 305 i18n-content="advancedOptionsButtonTitle"></button>
300 </div> 306 </div>
301 </section> 307 </section>
302 </div> 308 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698