Chromium Code Reviews| Index: net/socket/connect_timing.h |
| =================================================================== |
| --- net/socket/connect_timing.h (revision 0) |
| +++ net/socket/connect_timing.h (revision 0) |
| @@ -0,0 +1,33 @@ |
| +// Copyright (c) 2012 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_SOCKET_CONNECT_TIMING_H_ |
| +#define NET_SOCKET_CONNECT_TIMING_H_ |
| + |
| +#include "base/basictypes.h" |
| +#include "base/time.h" |
| +#include "net/base/net_export.h" |
| + |
| +namespace net { |
| + |
| +// Contains the LoadTimingInfo events related to establishing a connection. |
| +// These are all set by ConnectJobs. See base/load_timing.h for field |
|
eroman
2013/01/05 00:30:15
Do you think it is worth combining these guys usin
mmenke
2013/01/05 03:53:13
I've gone back and forth on this: The main reason
|
| +// descriptions. |
| +struct NET_EXPORT_PRIVATE ConnectTiming { |
| + ConnectTiming(); |
| + ~ConnectTiming(); |
| + |
| + base::TimeTicks dns_start; |
| + base::TimeTicks dns_end; |
| + |
| + base::TimeTicks connect_start; |
| + base::TimeTicks connect_end; |
| + |
| + base::TimeTicks ssl_start; |
| + base::TimeTicks ssl_end; |
| +}; |
| + |
| +} // namespace net |
| + |
| +#endif // NET_SOCKET_CONNECT_TIMING_H_ |
| Property changes on: net\socket\connect_timing.h |
| ___________________________________________________________________ |
| Added: svn:eol-style |
| + LF |