diff options
author | mbelshe@google.com <mbelshe@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-29 15:53:26 +0000 |
---|---|---|
committer | mbelshe@google.com <mbelshe@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-29 15:53:26 +0000 |
commit | e288a8e7c2b0b1faf93d925128c84620a044bdba (patch) | |
tree | 89495ea3ff186ddf0e0d0763ce6467526756d124 /chrome/browser/resources | |
parent | 0dbf657461ad991e09707c4ee7e1f9f3000903e4 (diff) | |
download | chromium_src-e288a8e7c2b0b1faf93d925128c84620a044bdba.zip chromium_src-e288a8e7c2b0b1faf93d925128c84620a044bdba.tar.gz chromium_src-e288a8e7c2b0b1faf93d925128c84620a044bdba.tar.bz2 |
Support for showing memory usage of 64-bit IE in a 32-bit Chromium
This is a changelist for http://codereview.chromium.org/75031 by Kent Tamura (tkent@google.com)
Review URL: http://codereview.chromium.org/100111
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@14846 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/resources')
-rw-r--r-- | chrome/browser/resources/about_memory.html | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/chrome/browser/resources/about_memory.html b/chrome/browser/resources/about_memory.html index 0c31cdd..08f24ce 100644 --- a/chrome/browser/resources/about_memory.html +++ b/chrome/browser/resources/about_memory.html @@ -330,6 +330,9 @@ function reload() { function formatNumber(str) { str += ''; + if (str == '0') { + return 'N/A '; + } var x = str.split('.'); var x1 = x[0]; var x2 = x.length > 1 ? '.' + x[1] : ''; |