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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef NET_BASE_LOAD_LOG_H_
6 #define NET_BASE_LOAD_LOG_H_
7
8 #include "base/ref_counted.h"
9
10 namespace net {
11
12 // LoadLog stores profiling information on where time was spent while servicing
13 // a request (waiting in queues, resolving hosts, resolving proxy, etc...).
14 class LoadLog : public base::RefCounted<LoadLog> {
15 public:
16 // TODO(eroman): Add an API similar to:
17 // void TrackEnterState(LoadState state);
18 // void TrackLeaveState(LoadState state);
19 // void Merge(const LoadLog* other);
20 };
21
22 } // namespace net
23
24 #endif // NET_BASE_LOAD_LOG_H_
OLDNEW
« 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