Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "net/base/load_timing_info.h" | 5 #include "net/base/load_timing_info.h" |
| 6 | 6 |
| 7 #include "net/base/net_log.h" | 7 #include "net/base/net_log.h" |
| 8 | 8 |
| 9 namespace net { | 9 namespace net { |
| 10 | 10 |
| 11 LoadTimingInfo::ConnectTiming::ConnectTiming() {} | 11 LoadTimingInfo::ConnectTiming::ConnectTiming() { |
| 12 | |
| 13 LoadTimingInfo::ConnectTiming::~ConnectTiming() {} | |
| 14 | |
| 15 LoadTimingInfo::LoadTimingInfo() : socket_reused(false), | |
| 16 socket_log_id(NetLog::Source::kInvalidId) { | |
| 17 } | 12 } |
| 18 | 13 |
| 19 LoadTimingInfo::~LoadTimingInfo() {} | 14 LoadTimingInfo::ConnectTiming::~ConnectTiming() { |
|
mef
2014/10/10 20:38:17
weird diff, but looks ok.
| |
| 15 } | |
| 16 | |
| 17 LoadTimingInfo::LoadTimingInfo() | |
| 18 : socket_reused(false), socket_log_id(NetLog::Source::kInvalidId) { | |
| 19 } | |
| 20 | |
| 21 LoadTimingInfo::~LoadTimingInfo() { | |
| 22 } | |
| 20 | 23 |
| 21 } // namespace net | 24 } // namespace net |
| 22 | |
| OLD | NEW |