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

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

Issue 11018013: add a new, blank version of content settings so that a new UI may be prototyped (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 2 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 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <html id="t" i18n-values="dir:textdirection"> 2 <html id="t" i18n-values="dir:textdirection">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <title i18n-content="optionsPageTitle"></title> 5 <title i18n-content="optionsPageTitle"></title>
6 <link rel="stylesheet" href="chrome://resources/css/bubble.css"> 6 <link rel="stylesheet" href="chrome://resources/css/bubble.css">
7 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css"> 7 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
8 <link rel="stylesheet" href="chrome://resources/css/list.css"> 8 <link rel="stylesheet" href="chrome://resources/css/list.css">
9 <link rel="stylesheet" href="chrome://resources/css/overlay.css"> 9 <link rel="stylesheet" href="chrome://resources/css/overlay.css">
10 <link rel="stylesheet" href="chrome://resources/css/spinner.css"> 10 <link rel="stylesheet" href="chrome://resources/css/spinner.css">
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 <script src="chrome://resources/js/cr/ui/menu_item.js"></script> 69 <script src="chrome://resources/js/cr/ui/menu_item.js"></script>
70 <script src="chrome://resources/js/cr/ui/menu.js"></script> 70 <script src="chrome://resources/js/cr/ui/menu.js"></script>
71 <script src="chrome://resources/js/cr/ui/autocomplete_list.js"></script> 71 <script src="chrome://resources/js/cr/ui/autocomplete_list.js"></script>
72 <script src="chrome://resources/js/cr/ui/grid.js"></script> 72 <script src="chrome://resources/js/cr/ui/grid.js"></script>
73 <script src="chrome://resources/js/cr/ui/overlay.js"></script> 73 <script src="chrome://resources/js/cr/ui/overlay.js"></script>
74 <script src="chrome://resources/js/cr/ui/position_util.js"></script> 74 <script src="chrome://resources/js/cr/ui/position_util.js"></script>
75 <script src="chrome://resources/js/cr/ui/repeating_button.js"></script> 75 <script src="chrome://resources/js/cr/ui/repeating_button.js"></script>
76 <script src="chrome://resources/js/cr/ui/tree.js"></script> 76 <script src="chrome://resources/js/cr/ui/tree.js"></script>
77 <script src="chrome://resources/js/load_time_data.js"></script> 77 <script src="chrome://resources/js/load_time_data.js"></script>
78 <script src="chrome://resources/js/util.js"></script> 78 <script src="chrome://resources/js/util.js"></script>
79
80 <script src="chrome://settings-frame/strings.js"></script>
79 <script src="chrome://settings-frame/options_bundle.js"></script> 81 <script src="chrome://settings-frame/options_bundle.js"></script>
80 </head> 82 </head>
81 83
82 <body class="uber-frame" 84 <body class="uber-frame"
83 i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 85 i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
84 <div id="overlay-container-1" class="overlay transparent" hidden> 86 <div id="overlay-container-1" class="overlay transparent" hidden>
85 <include src="autofill_options.html"> 87 <include src="autofill_options.html">
86 <include src="clear_browser_data_overlay.html"> 88 <include src="clear_browser_data_overlay.html">
87 <include src="content_settings.html"> 89 <include src="content_settings.html">
90 <include src="content_settings2.html">
88 <include src="do_not_track_confirm_overlay.html"> 91 <include src="do_not_track_confirm_overlay.html">
89 <include src="font_settings.html"> 92 <include src="font_settings.html">
90 <include src="home_page_overlay.html"> 93 <include src="home_page_overlay.html">
91 <include src="import_data_overlay.html"> 94 <include src="import_data_overlay.html">
92 <include src="instant_confirm_overlay.html"> 95 <include src="instant_confirm_overlay.html">
93 <include src="language_options.html"> 96 <include src="language_options.html">
94 <include src="manage_profile_overlay.html"> 97 <include src="manage_profile_overlay.html">
95 <include src="password_manager.html"> 98 <include src="password_manager.html">
96 <include src="search_engine_manager.html"> 99 <include src="search_engine_manager.html">
97 <include src="spelling_confirm_overlay.html"> 100 <include src="spelling_confirm_overlay.html">
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 </div> 160 </div>
158 161
159 <div id="templates" hidden> 162 <div id="templates" hidden>
160 <div id="managed-prefs-banner" class="page-banner managed-prefs-banner"> 163 <div id="managed-prefs-banner" class="page-banner managed-prefs-banner">
161 <div class="page-banner-gradient"> 164 <div class="page-banner-gradient">
162 <span id="managed-prefs-text" class="page-banner-text"></span> 165 <span id="managed-prefs-text" class="page-banner-text"></span>
163 </div> 166 </div>
164 </div> 167 </div>
165 </div> 168 </div>
166 169
167 <script src="chrome://settings-frame/strings.js"></script>
168 <script src="chrome://resources/js/i18n_template2.js"></script> 170 <script src="chrome://resources/js/i18n_template2.js"></script>
169 </body> 171 </body>
170 </html> 172 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/options/content_settings2.js ('k') | chrome/browser/resources/options/options_bundle.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698