// Copyright 2021 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/scoped_res_state.h" #include <cstring> #include <memory> #include "base/check.h" #include "build/build_config.h" namespace net { ScopedResState::ScopedResState() { … } ScopedResState::~ScopedResState() { … } bool ScopedResState::IsValid() const { … } const struct __res_state& ScopedResState::state() const { … } } // namespace net