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

Unified Diff: net/base/load_log.h

Issue 126303: Add a "LoadLog*" parameter to transactions, hostresolver, clientsocketpool. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: sync again Created 11 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/base/host_resolver_impl_unittest.cc ('k') | net/base/mock_host_resolver.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/load_log.h
===================================================================
--- net/base/load_log.h (revision 0)
+++ net/base/load_log.h (revision 0)
@@ -0,0 +1,24 @@
+// Copyright (c) 2009 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef NET_BASE_LOAD_LOG_H_
+#define NET_BASE_LOAD_LOG_H_
+
+#include "base/ref_counted.h"
+
+namespace net {
+
+// LoadLog stores profiling information on where time was spent while servicing
+// a request (waiting in queues, resolving hosts, resolving proxy, etc...).
+class LoadLog : public base::RefCounted<LoadLog> {
+ public:
+// TODO(eroman): Add an API similar to:
+// void TrackEnterState(LoadState state);
+// void TrackLeaveState(LoadState state);
+// void Merge(const LoadLog* other);
+};
+
+} // namespace net
+
+#endif // NET_BASE_LOAD_LOG_H_
Property changes on: net\base\load_log.h
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « net/base/host_resolver_impl_unittest.cc ('k') | net/base/mock_host_resolver.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698