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

Side by Side Diff: chrome/browser/resources/history.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 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 <title i18n-content="title"></title> 14 <title i18n-content="title"></title>
11 <link rel="icon" href="../../app/theme/history_favicon.png"> 15 <link rel="icon" href="../../app/theme/history_favicon.png">
12 <script src="chrome://resources/js/local_strings.js"></script> 16 <script src="chrome://resources/js/local_strings.js"></script>
13 <script src="chrome://resources/js/util.js"></script> 17 <script src="chrome://resources/js/util.js"></script>
14 <script src="chrome://history/history.js"></script> 18 <script src="chrome://history/history.js"></script>
15 <script src="chrome://history/strings.js"></script> 19 <script src="chrome://history/strings.js"></script>
16 <link rel="stylesheet" href="webui.css"> 20 <link rel="stylesheet" href="webui.css">
17 <style> 21 <style>
18 #results-separator { 22 #results-separator {
19 margin-top:12px; 23 margin-top:12px;
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 <div id="editing-controls"></div> 151 <div id="editing-controls"></div>
148 <div id="results-display"></div> 152 <div id="results-display"></div>
149 <div id="results-pagination"></div> 153 <div id="results-pagination"></div>
150 </div> 154 </div>
151 <div class="footer"> 155 <div class="footer">
152 </div> 156 </div>
153 <script src="chrome://resources/js/i18n_template.js"></script> 157 <script src="chrome://resources/js/i18n_template.js"></script>
154 <script src="chrome://resources/js/i18n_process.js"></script> 158 <script src="chrome://resources/js/i18n_process.js"></script>
155 </body> 159 </body>
156 </html> 160 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698