summaryrefslogtreecommitdiffstats
path: root/chrome/browser/resources/options/startup_section.html
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/resources/options/startup_section.html')
-rw-r--r--chrome/browser/resources/options/startup_section.html36
1 files changed, 36 insertions, 0 deletions
diff --git a/chrome/browser/resources/options/startup_section.html b/chrome/browser/resources/options/startup_section.html
new file mode 100644
index 0000000..778c870
--- /dev/null
+++ b/chrome/browser/resources/options/startup_section.html
@@ -0,0 +1,36 @@
+<section id="startup-section" guest-visibility="hidden">
+ <h3 i18n-content="sectionTitleStartup"></h3>
+ <div>
+ <div class="radio">
+ <label>
+ <input id="startup-newtab" type="radio" name="startup" value="5"
+ pref="session.restore_on_startup"
+ metric="Options_Startup_NewTab">
+ <span i18n-content="startupShowNewTab"></span>
+ </label>
+ </div>
+ <div class="radio">
+ <label>
+ <input id="startup-restore-session" type="radio" name="startup"
+ value="1" pref="session.restore_on_startup"
+ metric="Options_Startup_LastSession">
+ <span i18n-content="startupRestoreLastSession">
+ </span>
+ </label>
+ <a target="_blank" i18n-content="learnMore"
+ i18n-values="href:sessionRestoreLearnMoreURL"></a>
+ </div>
+ <div class="radio">
+ <label>
+ <input id="startup-show-pages" type="radio" name="startup"
+ pref="session.restore_on_startup"
+ value="4" metric="Options_Startup_Custom">
+ <span>
+ <span i18n-content="startupShowPages"></span>
+ <button id="startup-set-pages" class="link-button"
+ i18n-content="startupSetPages"></button>
+ </span>
+ </label>
+ </div>
+ </div>
+</section>