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

Side by Side Diff: chrome/browser/resources/bookmark_manager/main.html

Issue 8124010: Replace <meta> tag with header for content-security-policy on chrome:// pages. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 2 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
« no previous file with comments | « chrome/browser/resources/about_version.html ('k') | chrome/browser/resources/bug_report.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html i18n-values="dir:textdirection"> 2 <html i18n-values="dir:textdirection">
3 <!-- 3 <!--
4 4
5 Copyright (c) 2011 The Chromium Authors. All rights reserved. 5 Copyright (c) 2011 The Chromium Authors. All rights reserved.
6 Use of this source code is governed by a BSD-style license that can be 6 Use of this source code is governed by a BSD-style license that can be
7 found in the LICENSE file. 7 found in the LICENSE file.
8 8
9 --> 9 -->
10 <head> 10 <head>
11 <meta name="google" value="notranslate"> 11 <meta name="google" value="notranslate">
12 <!-- X-WebKit-CSP is our development name for Content-Security-Policy.
13 TODO(abarth): Change the name to Content-Security-Policy once CSP is done.
14 -->
15 <meta http-equiv="X-WebKit-CSP"
16 content="object-src 'none';
17 script-src chrome://resources
18 chrome-extension://mndnfokpggljbaajbnioimlmbfngpief
19 'self'">
abarth-chromium 2011/10/03 23:10:54 This one is different because it's a chrome-extens
Tom Sepez 2011/10/03 23:15:46 I'll omit this from the CL for now. It will remai
20 <title i18n-content="title"></title> 12 <title i18n-content="title"></title>
21 13
22 <link rel="stylesheet" href="chrome://resources/css/list.css"> 14 <link rel="stylesheet" href="chrome://resources/css/list.css">
23 <link rel="stylesheet" href="chrome://resources/css/tree.css"> 15 <link rel="stylesheet" href="chrome://resources/css/tree.css">
24 <link rel="stylesheet" href="chrome://resources/css/menu.css"> 16 <link rel="stylesheet" href="chrome://resources/css/menu.css">
25 <link rel="stylesheet" href="css/bmm.css"> 17 <link rel="stylesheet" href="css/bmm.css">
26 18
27 <script src="chrome://resources/css/tree.css.js"></script> 19 <script src="chrome://resources/css/tree.css.js"></script>
28 <script src="css/bmm.css.js"></script> 20 <script src="css/bmm.css.js"></script>
29 <script src="chrome://resources/js/event_tracker.js"></script> 21 <script src="chrome://resources/js/event_tracker.js"></script>
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 <hr> 134 <hr>
143 <button command="#add-new-bookmark-command"></button> 135 <button command="#add-new-bookmark-command"></button>
144 <button command="#new-folder-command"></button> 136 <button command="#new-folder-command"></button>
145 </menu> 137 </menu>
146 138
147 <div id="drop-overlay"></div> 139 <div id="drop-overlay"></div>
148 140
149 <script src="js/main.js"></script> 141 <script src="js/main.js"></script>
150 </body> 142 </body>
151 </html> 143 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/about_version.html ('k') | chrome/browser/resources/bug_report.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698