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

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

Issue 7637026: Add content-security-policy to chrome://quota-internals. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 4 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 | « no previous file | chrome/browser/resources/quota_internals_resources.grd » ('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 <!-- 2 <!--
3 Copyright (c) 2011 The Chromium Authors. All rights reserved. 3 Copyright (c) 2011 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be 4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file. 5 found in the LICENSE file.
6 --> 6 -->
7 <html i18n-values="dir:textdirection;"> 7 <html i18n-values="dir:textdirection;">
8 <include src="../content_security_policy.html"/>
8 <title>Quota Internals</title> 9 <title>Quota Internals</title>
9 <link rel="stylesheet" href="main.css"/> 10 <link rel="stylesheet" href="main.css"/>
10 11
11 <script src="chrome://resources/js/util.js"></script> 12 <script src="chrome://resources/js/util.js"></script>
12 <script src="chrome://resources/js/cr.js"></script> 13 <script src="chrome://resources/js/cr.js"></script>
13 <script src="chrome://resources/js/cr/event_target.js"></script> 14 <script src="chrome://resources/js/cr/event_target.js"></script>
14 <script src="chrome://resources/js/i18n_template.js"></script> 15 <script src="chrome://resources/js/i18n_template.js"></script>
15 16
16 <link rel="stylesheet" href="chrome://resources/css/tabs.css"> 17 <link rel="stylesheet" href="chrome://resources/css/tabs.css">
17 <link rel="stylesheet" href="chrome://resources/css/tree.css"> 18 <link rel="stylesheet" href="chrome://resources/css/tree.css">
18 <script src="chrome://resources/js/cr/ui.js"></script> 19 <script src="chrome://resources/js/cr/ui.js"></script>
19 <script src="chrome://resources/js/cr/ui/tabs.js"></script> 20 <script src="chrome://resources/js/cr/ui/tabs.js"></script>
20 <script src="chrome://resources/js/cr/ui/tree.js"></script> 21 <script src="chrome://resources/js/cr/ui/tree.js"></script>
21 <script src="chrome://resources/css/tree.css.js"></script> 22 <script src="chrome://resources/css/tree.css.js"></script>
22 <script src="chrome://resources/js/cr/ui/focus_outline_manager.js"></script> 23 <script src="chrome://resources/js/cr/ui/focus_outline_manager.js"></script>
23 24
24 <script src="message_dispatcher.js"></script> 25 <script src="chrome://quota-internals/message_dispatcher.js"></script>
25 <script src="event_handler.js"></script> 26 <script src="chrome://quota-internals/event_handler.js"></script>
26 27
27 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 28 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
28 29
29 <tabbox> 30 <tabbox>
30 <tabs> 31 <tabs>
31 <tab>Summary</tab> 32 <tab>Summary</tab>
32 <tab>Usage &amp; Quota</tab> 33 <tab>Usage &amp; Quota</tab>
33 <tab>Data</tab> 34 <tab>Data</tab>
34 </tabs> 35 </tabs>
35 <tabpanels> 36 <tabpanels>
(...skipping 30 matching lines...) Expand all
66 <tabpanel> 67 <tabpanel>
67 <!-- Data --> 68 <!-- Data -->
68 <button id="dump-button">Dump</button> 69 <button id="dump-button">Dump</button>
69 <pre id="dump-field"></pre> 70 <pre id="dump-field"></pre>
70 </tabpanel> 71 </tabpanel>
71 </tabpanels> 72 </tabpanels>
72 </tabbox> 73 </tabbox>
73 74
74 </body> 75 </body>
75 </html> 76 </html>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/quota_internals_resources.grd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698