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

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

Issue 467363003: Guest mode causes certain settings to be hidden. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Change visibility to CSS controlled Created 6 years, 4 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/bubble_button.css"> 7 <link rel="stylesheet" href="chrome://resources/css/bubble_button.css">
8 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css"> 8 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
9 <link rel="stylesheet" href="chrome://resources/css/list.css"> 9 <link rel="stylesheet" href="chrome://resources/css/list.css">
10 <link rel="stylesheet" href="chrome://resources/css/overlay.css"> 10 <link rel="stylesheet" href="chrome://resources/css/overlay.css">
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 i18n-content="controlledSettingDisableExtension"></button> 183 i18n-content="controlledSettingDisableExtension"></button>
184 </div> 184 </div>
185 </div> 185 </div>
186 186
187 <div id="extension-controlled-warning-template" 187 <div id="extension-controlled-warning-template"
188 class="extension-controlled-warning-box" hidden> 188 class="extension-controlled-warning-box" hidden>
189 <div class="extension-controlled-warning"></div> 189 <div class="extension-controlled-warning"></div>
190 <button i18n-content="extensionDisable"></button> 190 <button i18n-content="extensionDisable"></button>
191 </div> 191 </div>
192 192
193 <div id="main-content"> 193 <div id="main-content" i18n-values="guestMode:profileIsGuest">
194 <div id="mainview"> 194 <div id="mainview">
195 <div id="mainview-content"> 195 <div id="mainview-content">
196 <div id="page-container"> 196 <div id="page-container">
197 <!-- Please keep the main pages in desired order of display. This will 197 <!-- Please keep the main pages in desired order of display. This will
198 allow search results to display in the desired order. --> 198 allow search results to display in the desired order. -->
199 <include src="search_box.html"> 199 <include src="search_box.html">
200 <include src="search_page.html"> 200 <include src="search_page.html">
201 <include src="browser_options.html"> 201 <include src="browser_options.html">
202 </div> 202 </div>
203 </div> 203 </div>
204 </div> 204 </div>
205 </div> 205 </div>
206 206
207 <script src="chrome://resources/js/i18n_template2.js"></script> 207 <script src="chrome://resources/js/i18n_template2.js"></script>
208 </body> 208 </body>
209 </html> 209 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/options/content_settings.js ('k') | chrome/browser/resources/options/search_page.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698