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

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, 1 month 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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 <include src="certificate_import_error_overlay.html"> 105 <include src="certificate_import_error_overlay.html">
106 </if> 106 </if>
107 </div> 107 </div>
108 <div id="main-content"> 108 <div id="main-content">
109 <div id="navbar-container"> 109 <div id="navbar-container">
110 <h1 id="navbar-content-title" i18n-content="title"></h1> 110 <h1 id="navbar-content-title" i18n-content="title"></h1>
111 <ul id="navbar"> 111 <ul id="navbar">
112 </ul> 112 </ul>
113 </div> 113 </div>
114 <div id="mainview"> 114 <div id="mainview">
115 <div id="managed-prefs-banner" hidden> 115 <div id="managed-prefs-banner" class="managed-prefs-banner" hidden>
116 <span id="managed-prefs-icon"></span> 116 <span id="managed-prefs-icon" class="managed-prefs-icon"></span>
117 <span id="managed-prefs-text"></span> 117 <span id="managed-prefs-text" class="managed-prefs-text"></span>
118 </div> 118 </div>
119 <div id="subpage-backdrop" hidden></div> 119 <div id="subpage-backdrop" hidden></div>
120 <div id="mainview-content"> 120 <div id="mainview-content">
121 <div id="page-container"> 121 <div id="page-container">
122 <!-- Please keep the main pages in desired order of display. This will 122 <!-- Please keep the main pages in desired order of display. This will
123 allow search results to display in the desired order. --> 123 allow search results to display in the desired order. -->
124 <include src="search_page.html"> 124 <include src="search_page.html">
125 <include src="browser_options.html"> 125 <include src="browser_options.html">
126 <include src="personal_options.html"> 126 <include src="personal_options.html">
127 <if expr="pp_ifdef('chromeos')"> 127 <if expr="pp_ifdef('chromeos')">
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 </div> 180 </div>
181 </div> 181 </div>
182 </div> 182 </div>
183 </div> 183 </div>
184 </div> 184 </div>
185 <script src="chrome://settings/strings.js"></script> 185 <script src="chrome://settings/strings.js"></script>
186 <script src="chrome://resources/js/i18n_template.js"></script> 186 <script src="chrome://resources/js/i18n_template.js"></script>
187 <script src="chrome://resources/js/i18n_process.js"></script> 187 <script src="chrome://resources/js/i18n_process.js"></script>
188 </body> 188 </body>
189 </html> 189 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698