summaryrefslogtreecommitdiffstats
path: root/net/base/load_log.h
diff options
context:
space:
mode:
authoreroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-10 22:31:33 +0000
committereroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-10 22:31:33 +0000
commit4c656ce54e623886255567f125cef6885b04fc5f (patch)
treebab4e7112066f26a6551f694031f408e9c208e0a /net/base/load_log.h
parent10fb8126df079ccf47a308f2b5a40ed01a8efda0 (diff)
downloadchromium_src-4c656ce54e623886255567f125cef6885b04fc5f.zip
chromium_src-4c656ce54e623886255567f125cef6885b04fc5f.tar.gz
chromium_src-4c656ce54e623886255567f125cef6885b04fc5f.tar.bz2
Increase the maximum number of entries in LoadLog to 40.
Review URL: http://codereview.chromium.org/194075 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25935 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/base/load_log.h')
-rw-r--r--net/base/load_log.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/base/load_log.h b/net/base/load_log.h
index d1024cb..52c16da 100644
--- a/net/base/load_log.h
+++ b/net/base/load_log.h
@@ -46,7 +46,7 @@ class LoadLog : public base::RefCounted<LoadLog> {
};
// The maximum size of |events_|.
- enum { kMaxNumEntries = 25 };
+ enum { kMaxNumEntries = 40 };
// Ordered set of events that were logged.
// TODO(eroman): use a StackVector or array to avoid allocations.