OLD | NEW |
(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_ |
OLD | NEW |