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

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

Issue 7399002: Add chrome-extension:// to the list of allowed urls for all internal/webui (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 5 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 i18n-values="dir:textdirection;"> 2 <html i18n-values="dir:textdirection;">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <!-- X-WebKit-CSP is our development name for Content-Security-Policy. 5 <!-- X-WebKit-CSP is our development name for Content-Security-Policy.
6 The 'unsafe-eval' is required for jstemplate_compiled.js. 6 The 'unsafe-eval' is required for jstemplate_compiled.js.
7 TODO(tsepez) rename when Content-security-policy is done. 7 TODO(tsepez) rename when Content-security-policy is done.
8 --> 8 -->
9 <meta http-equiv="X-WebKit-CSP" content="object-src 'none'; 9 <meta http-equiv="X-WebKit-CSP"
10 script-src chrome://resources 'self' 'unsafe-eval'"> 10 content="object-src 'none';
11 script-src chrome://resources
12 chrome-extension://mndnfokpggljbaajbnioimlmbfngpief
13 'self' 'unsafe-eval'">
11 <link rel="stylesheet" href="flags.css"/> 14 <link rel="stylesheet" href="flags.css"/>
12 <script src="chrome://flags/flags.js"></script> 15 <script src="chrome://flags/flags.js"></script>
13 <script src="chrome://flags/strings.js"></script> 16 <script src="chrome://flags/strings.js"></script>
14 <script src="chrome://resources/js/i18n_template.js"></script> 17 <script src="chrome://resources/js/i18n_template.js"></script>
15 </head> 18 </head>
16 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 19 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
17 <div id="body-container" style="visibility:hidden"> 20 <div id="body-container" style="visibility:hidden">
18 21
19 <div id="header"><h1 i18n-content="flagsLongTitle">TITLE</h1></div> 22 <div id="header"><h1 i18n-content="flagsLongTitle">TITLE</h1></div>
20 23
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 type="button" 109 type="button"
107 i18n-content="flagsRestartButton">RESTART</button> 110 i18n-content="flagsRestartButton">RESTART</button>
108 </div> 111 </div>
109 </div> 112 </div>
110 </div> 113 </div>
111 </div> 114 </div>
112 <script src="chrome://resources/js/i18n_process.js"></script> 115 <script src="chrome://resources/js/i18n_process.js"></script>
113 <script src="chrome://resources/js/jstemplate_compiled.js"></script> 116 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
114 </body> 117 </body>
115 </html> 118 </html>
116
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698