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

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

Issue 75031: Support for showing memory usage of 64-bit IE in a 32-bit Chromium process.... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 11 years, 8 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/memory_details.cc ('k') | no next file » | 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 PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/st rict.dtd"> 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/st rict.dtd">
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 9
10 <style type="text/css"> 10 <style type="text/css">
(...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after
323 </style> 323 </style>
324 <script> 324 <script>
325 function reload() { 325 function reload() {
326 if (document.getElementById('helpTooltip')) 326 if (document.getElementById('helpTooltip'))
327 return; 327 return;
328 history.go(0); 328 history.go(0);
329 } 329 }
330 330
331 function formatNumber(str) { 331 function formatNumber(str) {
332 str += ''; 332 str += '';
333 if (str == '0') {
334 return 'N/A ';
335 }
333 var x = str.split('.'); 336 var x = str.split('.');
334 var x1 = x[0]; 337 var x1 = x[0];
335 var x2 = x.length > 1 ? '.' + x[1] : ''; 338 var x2 = x.length > 1 ? '.' + x[1] : '';
336 var regex = /(\d+)(\d{3})/; 339 var regex = /(\d+)(\d{3})/;
337 while (regex.test(x1)) { 340 while (regex.test(x1)) {
338 x1 = x1.replace(regex, '$1' + ',' + '$2'); 341 x1 = x1.replace(regex, '$1' + ',' + '$2');
339 } 342 }
340 return x1; 343 return x1;
341 } 344 }
342 345
(...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after
678 No results found. 681 No results found.
679 </td> 682 </td>
680 </tr> 683 </tr>
681 </table> 684 </table>
682 </div> 685 </div>
683 </body> 686 </body>
684 <script> 687 <script>
685 enableHelpTooltips(); 688 enableHelpTooltips();
686 </script> 689 </script>
687 </html> 690 </html>
OLDNEW
« no previous file with comments | « chrome/browser/memory_details.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698