diff options
author | mbelshe@chromium.org <mbelshe@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-10 21:12:02 +0000 |
---|---|---|
committer | mbelshe@chromium.org <mbelshe@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-10 21:12:02 +0000 |
commit | b41afea5e3da54aaf78e082457be6ddcdfe4f764 (patch) | |
tree | 9d4a53795231639d98a9056a6c61a4bf5f89c384 /chrome/common/chrome_constants.cc | |
parent | c3279126dedc5def022e3b456f1d2c9a9d8d6cdc (diff) | |
download | chromium_src-b41afea5e3da54aaf78e082457be6ddcdfe4f764.zip chromium_src-b41afea5e3da54aaf78e082457be6ddcdfe4f764.tar.gz chromium_src-b41afea5e3da54aaf78e082457be6ddcdfe4f764.tar.bz2 |
Stats tables are only used for debugging at this point, and when I turn
on full dom tracing, I need larger names and more of them. Increase
the counter limit and the size per name.
This only has effect when the user is using --enable-stats-table
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/6474008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74481 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/chrome_constants.cc')
-rw-r--r-- | chrome/common/chrome_constants.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/common/chrome_constants.cc b/chrome/common/chrome_constants.cc index 97bb58e..0cb0fca 100644 --- a/chrome/common/chrome_constants.cc +++ b/chrome/common/chrome_constants.cc @@ -115,7 +115,7 @@ const FilePath::CharType kServiceStateFileName[] = FPL("Service State"); // This number used to be limited to 32 in the past (see b/535234). const unsigned int kMaxRendererProcessCount = 42; const int kStatsMaxThreads = 32; -const int kStatsMaxCounters = 300; +const int kStatsMaxCounters = 3000; const size_t kMaxTitleChars = 4 * 1024; const size_t kMaxURLChars = 2 * 1024 * 1024; |