| Index: chrome/browser/resources/options2/options.html
|
| diff --git a/chrome/browser/resources/options2/options.html b/chrome/browser/resources/options2/options.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..57517295b490e87969881bbc5ccf8882eb0af049
|
| --- /dev/null
|
| +++ b/chrome/browser/resources/options2/options.html
|
| @@ -0,0 +1,188 @@
|
| +<!DOCTYPE HTML>
|
| +<html id="t" i18n-values="dir:textdirection">
|
| +<head>
|
| +<meta charset="utf-8">
|
| +<!-- Set the title to that of the default page so that the title doesn't flash
|
| + on load (for the most common case). -->
|
| +<title i18n-content="browserPageTabTitle"></title>
|
| +
|
| +<link rel="icon" href="../../../app/theme/settings_favicon.png">
|
| +<link rel="stylesheet" href="chrome://resources/css/button.css">
|
| +<link rel="stylesheet" href="chrome://resources/css/checkbox.css">
|
| +<link rel="stylesheet" href="chrome://resources/css/list.css">
|
| +<link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
|
| +<link rel="stylesheet" href="chrome://resources/css/select.css">
|
| +<link rel="stylesheet" href="chrome://resources/css/spinner.css">
|
| +<link rel="stylesheet" href="chrome://resources/css/throbber.css">
|
| +<link rel="stylesheet" href="chrome://resources/css/tree.css">
|
| +<link rel="stylesheet" href="options_page.css">
|
| +<link rel="stylesheet" href="advanced_options.css">
|
| +<link rel="stylesheet" href="alert_overlay.css">
|
| +<link rel="stylesheet" href="autofill_options.css">
|
| +<link rel="stylesheet" href="autofill_overlay.css">
|
| +<link rel="stylesheet" href="browser_options_page.css">
|
| +<link rel="stylesheet" href="clear_browser_data_overlay.css">
|
| +<link rel="stylesheet" href="content_settings.css">
|
| +<link rel="stylesheet" href="cookies_view.css">
|
| +<link rel="stylesheet" href="extension_settings.css">
|
| +<link rel="stylesheet" href="font_settings.css">
|
| +<if expr="pp_ifdef('enable_register_protocol_handler')">
|
| + <link rel="stylesheet" href="handler_options.css">
|
| +</if>
|
| +<link rel="stylesheet" href="import_data_overlay.css">
|
| +<if expr="pp_ifdef('enable_web_intents')">
|
| + <link rel="stylesheet" href="intents_view.css">
|
| +</if>
|
| +<link rel="stylesheet" href="language_options.css">
|
| +<link rel="stylesheet" href="manage_profile_overlay.css">
|
| +<link rel="stylesheet" href="pack_extension_overlay.css">
|
| +<link rel="stylesheet" href="password_manager.css">
|
| +<link rel="stylesheet" href="password_manager_list.css">
|
| +<link rel="stylesheet" href="personal_options.css">
|
| +<link rel="stylesheet" href="search_engine_manager.css">
|
| +<link rel="stylesheet" href="search_page.css">
|
| +<link rel="stylesheet" href="subpages_tab_controls.css">
|
| +<link rel="stylesheet" href="../sync_setup_overlay.css">
|
| +<if expr="pp_ifdef('chromeos')">
|
| + <link rel="stylesheet" href="about_page.css">
|
| + <link rel="stylesheet" href="chromeos/accounts_options_page.css">
|
| + <link rel="stylesheet" href="chromeos/change_picture_options.css">
|
| + <link rel="stylesheet" href="chromeos/internet_options_page.css">
|
| + <link rel="stylesheet" href="chromeos/proxy.css">
|
| + <link rel="stylesheet" href="chromeos/system_options_page.css">
|
| +</if>
|
| +<if expr="pp_ifdef('chromeos') and pp_ifdef('use_virtual_keyboard')">
|
| + <link rel="stylesheet" href="chromeos/virtual_keyboard.css">
|
| +</if>
|
| +
|
| +<if expr="not pp_ifdef('win32') and not pp_ifdef('darwin')">
|
| + <link rel="stylesheet" href="certificate_manager.css">
|
| + <link rel="stylesheet" href="certificate_tree.css">
|
| +</if>
|
| +
|
| +<script src="chrome://resources/css/tree.css.js"></script>
|
| +
|
| +<script src="chrome://resources/js/cr.js"></script>
|
| +<script src="chrome://resources/js/cr/command_line.js"></script>
|
| +<script src="chrome://resources/js/cr/event_target.js"></script>
|
| +<script src="chrome://resources/js/cr/ui.js"></script>
|
| +<script src="chrome://resources/js/cr/ui/array_data_model.js"></script>
|
| +<script src="chrome://resources/js/cr/ui/list_selection_model.js"></script>
|
| +<script src="chrome://resources/js/cr/ui/list_selection_controller.js"></script>
|
| +<script src="chrome://resources/js/cr/ui/list_single_selection_model.js"></script>
|
| +<script src="chrome://resources/js/cr/ui/list_item.js"></script>
|
| +<script src="chrome://resources/js/cr/ui/list.js"></script>
|
| +<script src="chrome://resources/js/cr/ui/grid.js"></script>
|
| +<script src="chrome://resources/js/cr/ui/position_util.js"></script>
|
| +<script src="chrome://resources/js/cr/ui/repeating_button.js"></script>
|
| +<script src="chrome://resources/js/cr/ui/tree.js"></script>
|
| +<script src="chrome://resources/js/local_strings.js"></script>
|
| +<script src="chrome://resources/js/util.js"></script>
|
| +<script src="chrome://settings-frame/options_bundle.js"></script>
|
| +</head>
|
| +<body i18n-values=".style.fontFamily:fontfamily;">
|
| +<div id="overlay" class="overlay transparent" hidden>
|
| + <include src="alert_overlay.html">
|
| + <include src="autofill_edit_address_overlay.html">
|
| + <include src="autofill_edit_creditcard_overlay.html">
|
| + <include src="clear_browser_data_overlay.html">
|
| + <include src="import_data_overlay.html">
|
| + <include src="instant_confirm_overlay.html">
|
| + <include src="language_add_language_overlay.html">
|
| + <include src="manage_profile_overlay.html">
|
| + <include src="pack_extension_overlay.html">
|
| + <include src="../sync_setup_overlay.html">
|
| + <if expr="pp_ifdef('chromeos')">
|
| + <include
|
| + src="chromeos/language_customize_modifier_keys_overlay.html">
|
| + <include src="chromeos/internet_detail.html">
|
| + </if>
|
| + <if expr="not pp_ifdef('win32') and not pp_ifdef('darwin')">
|
| + <include src="certificate_restore_overlay.html">
|
| + <include src="certificate_backup_overlay.html">
|
| + <include src="certificate_edit_ca_trust_overlay.html">
|
| + <include src="certificate_import_error_overlay.html">
|
| + </if>
|
| +</div>
|
| +<div id="main-content">
|
| + <div id="navbar-container">
|
| + <h1 id="navbar-content-title" i18n-content="title"></h1>
|
| + <ul id="navbar">
|
| + </ul>
|
| + </div>
|
| + <div id="mainview">
|
| + <div id="managed-prefs-banner" class="managed-prefs-banner" hidden>
|
| + <span id="managed-prefs-icon" class="managed-prefs-icon"></span>
|
| + <span id="managed-prefs-text" class="managed-prefs-text"></span>
|
| + </div>
|
| + <div id="subpage-backdrop" hidden></div>
|
| + <div id="mainview-content">
|
| + <div id="page-container">
|
| + <!-- Please keep the main pages in desired order of display. This will
|
| + allow search results to display in the desired order. -->
|
| + <include src="search_page.html">
|
| + <include src="browser_options.html">
|
| + <include src="personal_options.html">
|
| + <if expr="pp_ifdef('chromeos')">
|
| + <include src="chromeos/system_options.html">
|
| + <include src="chromeos/internet_options.html">
|
| + <include src="chromeos/accounts_options.html">
|
| + </if>
|
| + <include src="advanced_options.html">
|
| + <include src="extension_settings.html">
|
| + </div>
|
| + <div id="subpage-sheet-container-1"
|
| + class="subpage-sheet-container transparent" hidden>
|
| + <div id="subpage-sheet-1" class="subpage-sheet">
|
| + <button class="raw-button close-subpage custom-appearance"></button>
|
| + <div class="subpage-sheet-contents">
|
| + <if expr="pp_ifdef('chromeos')">
|
| + <include src="about_page.html">
|
| + <include src="chromeos/change_picture_options.html">
|
| + <include src="chromeos/proxy.html">
|
| + </if>
|
| + <if expr="not pp_ifdef('win32') and not pp_ifdef('darwin')">
|
| + <include src="certificate_manager.html">
|
| + </if>
|
| + <include src="autofill_options.html">
|
| + <include src="content_settings.html">
|
| + <include src="font_settings.html">
|
| + <include src="language_options.html">
|
| + <include src="password_manager.html">
|
| + <include src="search_engine_manager.html">
|
| + </div>
|
| + </div>
|
| + </div>
|
| + <div id="subpage-sheet-container-2"
|
| + class="subpage-sheet-container transparent" hidden>
|
| + <div id="subpage-sheet-2" class="subpage-sheet">
|
| + <button class="raw-button close-subpage custom-appearance"></button>
|
| + <div class="subpage-sheet-contents">
|
| + <if expr="pp_ifdef('chromeos')">
|
| + <include src="chromeos/language_chewing_options.html">
|
| + <include src="chromeos/language_hangul_options.html">
|
| + <include src="chromeos/language_mozc_options.html">
|
| + <include src="chromeos/language_pinyin_options.html">
|
| + </if>
|
| + <if expr="pp_ifdef('chromeos') and pp_ifdef('use_virtual_keyboard')">
|
| + <include src="chromeos/virtual_keyboard.html">
|
| + </if>
|
| + <include src="cookies_view.html">
|
| + <if expr="pp_ifdef('enable_register_protocol_handler')">
|
| + <include src="handler_options.html">
|
| + </if>
|
| + <if expr="pp_ifdef('enable_web_intents')">
|
| + <include src="intents_view.html">
|
| + </if>
|
| + <include src="content_settings_exceptions_area.html">
|
| + </div>
|
| + </div>
|
| + </div>
|
| + </div>
|
| + </div>
|
| +</div>
|
| +<script src="chrome://settings-frame/strings.js"></script>
|
| +<script src="chrome://resources/js/i18n_template.js"></script>
|
| +<script src="chrome://resources/js/i18n_process.js"></script>
|
| +</body>
|
| +</html>
|
|
|