// Copyright 2013 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef NET_DNS_RECORD_PARSED_H_ #define NET_DNS_RECORD_PARSED_H_ #include <stdint.h> #include <memory> #include <string> #include "base/check.h" #include "base/time/time.h" #include "net/base/net_export.h" namespace net { class DnsRecordParser; class RecordRdata; // Parsed record. This is a form of DnsResourceRecord where the rdata section // has been parsed into a data structure. class NET_EXPORT_PRIVATE RecordParsed { … }; } // namespace net #endif // NET_DNS_RECORD_PARSED_H_