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

Side by Side Diff: chrome/browser/resources/options/options.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 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 <!-- X-WebKit-CSP is our development name for Content-Security-Policy. 5 <!-- X-WebKit-CSP is our development name for Content-Security-Policy.
6 TODO(tsepez) rename when Content-security-policy is done. 6 TODO(tsepez) rename when Content-security-policy is done.
7 TODO(tsepez) remove unsafe-eval when bidichecker_packaged.js fixed. 7 TODO(tsepez) remove unsafe-eval when bidichecker_packaged.js fixed.
8 --> 8 -->
9 <meta http-equiv="X-WebKit-CSP" content="object-src 'none'; script-src chrome:// resources 'self' 'unsafe-eval'"> 9 <meta http-equiv="X-WebKit-CSP"
10 content="object-src 'none';
11 script-src chrome://resources
12 chrome-extension://mndnfokpggljbaajbnioimlmbfngpief
13 'self' 'unsafe-eval'">
10 <!-- Set the title to that of the default page so that the title doesn't flash 14 <!-- Set the title to that of the default page so that the title doesn't flash
11 on load (for the most common case). --> 15 on load (for the most common case). -->
12 <title i18n-content="browserPageTabTitle"></title> 16 <title i18n-content="browserPageTabTitle"></title>
13 17
14 <link rel="icon" href="../../../app/theme/settings_favicon.png"> 18 <link rel="icon" href="../../../app/theme/settings_favicon.png">
15 <link rel="stylesheet" href="chrome://resources/css/button.css"> 19 <link rel="stylesheet" href="chrome://resources/css/button.css">
16 <link rel="stylesheet" href="chrome://resources/css/list.css"> 20 <link rel="stylesheet" href="chrome://resources/css/list.css">
17 <link rel="stylesheet" href="chrome://resources/css/select.css"> 21 <link rel="stylesheet" href="chrome://resources/css/select.css">
18 <link rel="stylesheet" href="chrome://resources/css/throbber.css"> 22 <link rel="stylesheet" href="chrome://resources/css/throbber.css">
19 <link rel="stylesheet" href="chrome://resources/css/tree.css"> 23 <link rel="stylesheet" href="chrome://resources/css/tree.css">
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 </div> 168 </div>
165 </div> 169 </div>
166 </div> 170 </div>
167 </div> 171 </div>
168 </div> 172 </div>
169 <script src="chrome://settings/strings.js"></script> 173 <script src="chrome://settings/strings.js"></script>
170 <script src="chrome://resources/js/i18n_template.js"></script> 174 <script src="chrome://resources/js/i18n_template.js"></script>
171 <script src="chrome://resources/js/i18n_process.js"></script> 175 <script src="chrome://resources/js/i18n_process.js"></script>
172 </body> 176 </body>
173 </html> 177 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698