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

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

Issue 9559002: Bug 111139: Deprecate HOMEPAGE option, remove the UI for it, migrate users away from it (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 9 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="settings" class="page" hidden> 1 <div id="settings" class="page" hidden>
2 <header> 2 <header>
3 <h1 i18n-content="settingsTitle"></h1> 3 <h1 i18n-content="settingsTitle"></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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 </div> 45 </div>
46 </section> 46 </section>
47 </if> 47 </if>
48 <if expr="not pp_ifdef('chromeos')"> 48 <if expr="not pp_ifdef('chromeos')">
49 <!-- This section is temporarily duplicated down below for ChromeOS. --> 49 <!-- This section is temporarily duplicated down below for ChromeOS. -->
50 <section id="startup-section"> 50 <section id="startup-section">
51 <h3 i18n-content="sectionTitleStartup"></h3> 51 <h3 i18n-content="sectionTitleStartup"></h3>
52 <div> 52 <div>
53 <div class="radio"> 53 <div class="radio">
54 <label> 54 <label>
55 <input type="radio" name="startup" value="0"
56 pref="session.restore_on_startup"
57 metric="Options_Startup_Homepage">
58 <span i18n-content="startupShowHomePage"></span>
59 </label>
60 </div>
61 <div class="radio">
62 <label>
63 <input type="radio" name="startup" value="5" 55 <input type="radio" name="startup" value="5"
64 pref="session.restore_on_startup" 56 pref="session.restore_on_startup"
65 metric="Options_Startup_NewTab"> 57 metric="Options_Startup_NewTab">
66 <span i18n-content="startupShowNewTab"></span> 58 <span i18n-content="startupShowNewTab"></span>
67 </label> 59 </label>
68 </div> 60 </div>
69 <div class="radio"> 61 <div class="radio">
70 <label> 62 <label>
71 <input type="radio" name="startup" value="1" 63 <input type="radio" name="startup" value="1"
72 pref="session.restore_on_startup" 64 pref="session.restore_on_startup"
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after
276 </if> 268 </if>
277 <if expr="pp_ifdef('chromeos')"> 269 <if expr="pp_ifdef('chromeos')">
278 <!-- This section is temporarily duplicated here for ChromeOS. --> 270 <!-- This section is temporarily duplicated here for ChromeOS. -->
279 <!-- TODO(csilv): Move to 'Under the Hood' for ChromeOS only. --> 271 <!-- TODO(csilv): Move to 'Under the Hood' for ChromeOS only. -->
280 <!-- http://crbug.com/110527 --> 272 <!-- http://crbug.com/110527 -->
281 <section id="startup-section"> 273 <section id="startup-section">
282 <h3 i18n-content="sectionTitleStartup"></h3> 274 <h3 i18n-content="sectionTitleStartup"></h3>
283 <div> 275 <div>
284 <div class="radio"> 276 <div class="radio">
285 <label> 277 <label>
286 <input type="radio" name="startup" value="0"
287 pref="session.restore_on_startup"
288 metric="Options_Startup_Homepage">
289 <span i18n-content="startupShowHomePage"></span>
290 </label>
291 </div>
292 <div class="radio">
293 <label>
294 <input type="radio" name="startup" value="5" 278 <input type="radio" name="startup" value="5"
295 pref="session.restore_on_startup" 279 pref="session.restore_on_startup"
296 metric="Options_Startup_NewTab"> 280 metric="Options_Startup_NewTab">
297 <span i18n-content="startupShowNewTab"></span> 281 <span i18n-content="startupShowNewTab"></span>
298 </label> 282 </label>
299 </div> 283 </div>
300 <div class="radio"> 284 <div class="radio">
301 <label> 285 <label>
302 <input type="radio" name="startup" value="1" 286 <input type="radio" name="startup" value="1"
303 pref="session.restore_on_startup" 287 pref="session.restore_on_startup"
(...skipping 23 matching lines...) Expand all
327 </if> 311 </if>
328 <section> 312 <section>
329 <h3 i18n-content="sectionTitleAdvanced"></h3> 313 <h3 i18n-content="sectionTitleAdvanced"></h3>
330 <div> 314 <div>
331 <button id="advanced-settings" 315 <button id="advanced-settings"
332 i18n-content="advancedSettings"> 316 i18n-content="advancedSettings">
333 </button> 317 </button>
334 </div> 318 </div>
335 </section> 319 </section>
336 </div> 320 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698