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

Side by Side Diff: chrome/browser/resources/bookmark_manager/main.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 <!-- 3 <!--
4 4
5 Copyright (c) 2010 The Chromium Authors. All rights reserved. 5 Copyright (c) 2010 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. 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. 13 TODO(abarth): Change the name to Content-Security-Policy once CSP is done.
14 --> 14 -->
15 <meta http-equiv="X-WebKit-CSP" content="object-src 'none'; script-src chrome:// resources 'self'"> 15 <meta http-equiv="X-WebKit-CSP"
16 content="object-src 'none';
17 script-src chrome://resources
18 chrome-extension://mndnfokpggljbaajbnioimlmbfngpief
19 'self'">
16 <title i18n-content="title"></title> 20 <title i18n-content="title"></title>
17 21
18 <link rel="stylesheet" href="chrome://resources/css/list.css"> 22 <link rel="stylesheet" href="chrome://resources/css/list.css">
19 <link rel="stylesheet" href="chrome://resources/css/tree.css"> 23 <link rel="stylesheet" href="chrome://resources/css/tree.css">
20 <link rel="stylesheet" href="chrome://resources/css/menu.css"> 24 <link rel="stylesheet" href="chrome://resources/css/menu.css">
21 <link rel="stylesheet" href="css/bmm.css"> 25 <link rel="stylesheet" href="css/bmm.css">
22 26
23 <script src="chrome://resources/css/tree.css.js"></script> 27 <script src="chrome://resources/css/tree.css.js"></script>
24 <script src="css/bmm.css.js"></script> 28 <script src="css/bmm.css.js"></script>
25 <script src="chrome://resources/js/event_tracker.js"></script> 29 <script src="chrome://resources/js/event_tracker.js"></script>
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 <hr> 142 <hr>
139 <button command="#add-new-bookmark-command"></button> 143 <button command="#add-new-bookmark-command"></button>
140 <button command="#new-folder-command"></button> 144 <button command="#new-folder-command"></button>
141 </menu> 145 </menu>
142 146
143 <div id="drop-overlay"></div> 147 <div id="drop-overlay"></div>
144 148
145 <script src="js/main.js"></script> 149 <script src="js/main.js"></script>
146 </body> 150 </body>
147 </html> 151 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698