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

Side by Side Diff: chrome/browser/resources/about_memory_mac.html

Issue 7396026: Consolidate content-security-policy markup (Closed) Base URL: svn://svn.chromium.org/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 2
3 <!-- 3 <!--
4 about:memory template page 4 about:memory template page
5 --> 5 -->
6 <html id="t"> 6 <html id="t">
7 <head> 7 <head>
8 <title>About Memory</title> 8 <title>About Memory</title>
9 <meta http-equiv="X-WebKit-CSP" 9 <include src="content_security_policy.html"/>
10 content="object-src 'none'; 10 <link rel="stylesheet" href="shared/css/about_memory.css">
11 script-src chrome://resources
12 chrome-extension://mndnfokpggljbaajbnioimlmbfngpief
13 'self' 'unsafe-eval'">
14 <link rel="stylesheet" href="shared/css/about_memory.css">
15 <style> 11 <style>
16 body { 12 body {
17 font-family: Helvetica, sans-serif; 13 font-family: Helvetica, sans-serif;
18 } 14 }
19 div#header select { 15 div#header select {
20 font-family: Helvetica, sans-serif; 16 font-family: Helvetica, sans-serif;
21 } 17 }
22 div.viewOptions input { 18 div.viewOptions input {
23 font-family: Helvetica, sans-serif; 19 font-family: Helvetica, sans-serif;
24 } 20 }
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
256 </td> 252 </td>
257 </tr> 253 </tr>
258 </table> 254 </table>
259 <div class="otherbrowsers"> 255 <div class="otherbrowsers">
260 (Note: Due to memory sharing between processes, summing memory usage doe s not give total memory usage.) 256 (Note: Due to memory sharing between processes, summing memory usage doe s not give total memory usage.)
261 </div> 257 </div>
262 </div> 258 </div>
263 <script src="chrome://resources/js/jstemplate_compiled.js"></script> 259 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
264 </body> 260 </body>
265 </html> 261 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698