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

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

Issue 14066003: Don't allow elevation for CHROME_OS. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix bug in set_elevated function. Created 7 years, 8 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
OLDNEW
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <html i18n-values="dir:textdirection"> 2 <html i18n-values="dir:textdirection">
3 <head> 3 <head>
4 <title i18n-content="blockPageTitle"></title> 4 <title i18n-content="blockPageTitle"></title>
5 <link rel="stylesheet" href="../../../ui/webui/resources/css/chrome_shared.css "> 5 <link rel="stylesheet" href="../../../ui/webui/resources/css/chrome_shared.css ">
6 <link rel="stylesheet" href="managed_mode_block_interstitial.css"> 6 <link rel="stylesheet" href="managed_mode_block_interstitial.css">
7 <script src="../../../ui/webui/resources/js/cr.js"></script>
7 <script src="../../../ui/webui/resources/js/load_time_data.js"></script> 8 <script src="../../../ui/webui/resources/js/load_time_data.js"></script>
8 <script src="../../../ui/webui/resources/js/util.js"></script> 9 <script src="../../../ui/webui/resources/js/util.js"></script>
9 <script src="managed_mode_block_interstitial.js"></script> 10 <script src="managed_mode_block_interstitial.js"></script>
10 </head> 11 </head>
11 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 12 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
12 <img id="robot" src="robot.png"> 13 <img id="robot" src="robot.png">
13 <div id="block-page-title"> 14 <div id="block-page-title">
14 <span id="block-page-message" i18n-content="blockPageMessage"></span> 15 <span id="block-page-message" i18n-content="blockPageMessage"></span>
15 <span id="block-page-url" i18n-content="blockedUrl"></span> 16 <span id="block-page-url" i18n-content="blockedUrl"></span>
16 </div> 17 </div>
17 <div id="actions"> 18 <div id="actions">
18 <button id="back-button" i18n-content="backButton"></button> 19 <button id="back-button" i18n-content="backButton"></button>
19 <button id="content-packs-section-button" 20 <button id="content-packs-section-button"
20 i18n-content="contentPacksSectionButton" disabled> 21 i18n-content="contentPacksSectionButton" disabled>
21 </button> 22 </button>
22 </div> 23 </div>
23 <div id="footer-message"> 24 <if expr="not pp_ifdef('chromeos')">
24 <span id="bypass-block-message" i18n-content="bypassBlockMessage"></span> 25 <div id="footer-message">
25 <button id="bypass-block-button" i18n-content="bypassBlockButton"></button> 26 <span id="bypass-block-message" i18n-content="bypassBlockMessage"></span>
26 </div> 27 <button id="bypass-block-button" i18n-content="bypassBlockButton">
28 </button>
29 </div>
30 </if>
27 </body> 31 </body>
28 </html> 32 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/history/history.js ('k') | chrome/browser/resources/managed_mode_block_interstitial.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698