mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 06:16:30 +03:00
23 lines
626 B
C++
23 lines
626 B
C++
|
// 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.
|
||
|
|
||
|
#include "net/base/load_timing_info.h"
|
||
|
|
||
|
#include "net/log/net_log_source.h"
|
||
|
|
||
|
namespace net {
|
||
|
|
||
|
LoadTimingInfo::ConnectTiming::ConnectTiming() = default;
|
||
|
|
||
|
LoadTimingInfo::ConnectTiming::~ConnectTiming() = default;
|
||
|
|
||
|
LoadTimingInfo::LoadTimingInfo()
|
||
|
: socket_reused(false), socket_log_id(NetLogSource::kInvalidId) {}
|
||
|
|
||
|
LoadTimingInfo::LoadTimingInfo(const LoadTimingInfo& other) = default;
|
||
|
|
||
|
LoadTimingInfo::~LoadTimingInfo() = default;
|
||
|
|
||
|
} // namespace net
|