blob: 7cc803d00d97eb3d96fec255dfd16d367dfb3dd0 [file] [log] [blame]
// Copyright 2020 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 "components/winhttp/proxy_info.h"
namespace winhttp {
ProxyInfo::ProxyInfo() = default;
ProxyInfo::~ProxyInfo() = default;
ProxyInfo::ProxyInfo(bool auto_detect,
const std::wstring& auto_config_url,
const std::wstring& proxy,
const std::wstring& proxy_bypass)
: auto_detect(auto_detect),
auto_config_url(auto_config_url),
proxy(proxy),
proxy_bypass(proxy_bypass) {}
ProxyInfo::ProxyInfo(const ProxyInfo& proxy_info) = default;
ProxyInfo& ProxyInfo::operator=(const ProxyInfo& proxy_info) = default;
ProxyInfo::ProxyInfo(ProxyInfo&& proxy_info) = default;
ProxyInfo& ProxyInfo::operator=(ProxyInfo&& proxy_info) = default;
} // namespace winhttp