// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "net/dns/public/resolve_error_info.h" namespace net { ResolveErrorInfo::ResolveErrorInfo() = default; ResolveErrorInfo::ResolveErrorInfo(int resolve_error, bool is_secure_network_error) : error(resolve_error), is_secure_network_error(is_secure_network_error) { DCHECK(!(is_secure_network_error && resolve_error == net::OK)); } ResolveErrorInfo::ResolveErrorInfo(const ResolveErrorInfo& resolve_error_info) = default; ResolveErrorInfo::ResolveErrorInfo(ResolveErrorInfo&& other) = default; ResolveErrorInfo& ResolveErrorInfo::operator=(const ResolveErrorInfo& other) = default; ResolveErrorInfo& ResolveErrorInfo::operator=(ResolveErrorInfo&& other) = default; bool ResolveErrorInfo::operator==(const ResolveErrorInfo& other) const { return error == other.error && is_secure_network_error == other.is_secure_network_error; } bool ResolveErrorInfo::operator!=(const ResolveErrorInfo& other) const { return !(*this == other); } } // namespace net