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

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

Issue 8102019: redesign and reimplement proxy config service and tracker, revise proxy ui on cros (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 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 <!-- Set the title to that of the default page so that the title doesn't flash 5 <!-- Set the title to that of the default page so that the title doesn't flash
6 on load (for the most common case). --> 6 on load (for the most common case). -->
7 <title i18n-content="browserPageTabTitle"></title> 7 <title i18n-content="browserPageTabTitle"></title>
8 8
9 <link rel="icon" href="../../../app/theme/settings_favicon.png"> 9 <link rel="icon" href="../../../app/theme/settings_favicon.png">
10 <link rel="stylesheet" href="chrome://resources/css/button.css"> 10 <link rel="stylesheet" href="chrome://resources/css/button.css">
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 <include src="certificate_import_error_overlay.html"> 104 <include src="certificate_import_error_overlay.html">
105 </if> 105 </if>
106 </div> 106 </div>
107 <div id="main-content"> 107 <div id="main-content">
108 <div id="navbar-container"> 108 <div id="navbar-container">
109 <h1 id="navbar-content-title" i18n-content="title"></h1> 109 <h1 id="navbar-content-title" i18n-content="title"></h1>
110 <ul id="navbar"> 110 <ul id="navbar">
111 </ul> 111 </ul>
112 </div> 112 </div>
113 <div id="mainview"> 113 <div id="mainview">
114 <div id="managed-prefs-banner" hidden> 114 <div id="managed-prefs-banner" class="managed-prefs-banner" hidden>
115 <span id="managed-prefs-icon"></span> 115 <span id="managed-prefs-icon" class="managed-prefs-icon"></span>
116 <span id="managed-prefs-text"></span> 116 <span id="managed-prefs-text" class="managed-prefs-text"></span>
117 </div> 117 </div>
118 <div id="subpage-backdrop" hidden></div> 118 <div id="subpage-backdrop" hidden></div>
119 <div id="mainview-content"> 119 <div id="mainview-content">
120 <div id="page-container"> 120 <div id="page-container">
121 <!-- Please keep the main pages in desired order of display. This will 121 <!-- Please keep the main pages in desired order of display. This will
122 allow search results to display in the desired order. --> 122 allow search results to display in the desired order. -->
123 <include src="search_page.html"> 123 <include src="search_page.html">
124 <include src="browser_options.html"> 124 <include src="browser_options.html">
125 <include src="personal_options.html"> 125 <include src="personal_options.html">
126 <if expr="pp_ifdef('chromeos')"> 126 <if expr="pp_ifdef('chromeos')">
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 </div> 179 </div>
180 </div> 180 </div>
181 </div> 181 </div>
182 </div> 182 </div>
183 </div> 183 </div>
184 <script src="chrome://settings/strings.js"></script> 184 <script src="chrome://settings/strings.js"></script>
185 <script src="chrome://resources/js/i18n_template.js"></script> 185 <script src="chrome://resources/js/i18n_template.js"></script>
186 <script src="chrome://resources/js/i18n_process.js"></script> 186 <script src="chrome://resources/js/i18n_process.js"></script>
187 </body> 187 </body>
188 </html> 188 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698