Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(303)

Unified Diff: net/dns/dns_query.h

Issue 992733002: Remove //net (except for Android test stuff) and sdch (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/dns/dns_protocol.h ('k') | net/dns/dns_query.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/dns/dns_query.h
diff --git a/net/dns/dns_query.h b/net/dns/dns_query.h
deleted file mode 100644
index e1469bdfbc09a0395a09cff4808eba66cf561115..0000000000000000000000000000000000000000
--- a/net/dns/dns_query.h
+++ /dev/null
@@ -1,58 +0,0 @@
-// Copyright (c) 2011 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.
-
-#ifndef NET_DNS_DNS_QUERY_H_
-#define NET_DNS_DNS_QUERY_H_
-
-#include "base/basictypes.h"
-#include "base/memory/ref_counted.h"
-#include "base/strings/string_piece.h"
-#include "net/base/net_export.h"
-
-namespace net {
-
-class IOBufferWithSize;
-
-// Represents on-the-wire DNS query message as an object.
-// TODO(szym): add support for the OPT pseudo-RR (EDNS0/DNSSEC).
-class NET_EXPORT_PRIVATE DnsQuery {
- public:
- // Constructs a query message from |qname| which *MUST* be in a valid
- // DNS name format, and |qtype|. The qclass is set to IN.
- DnsQuery(uint16 id, const base::StringPiece& qname, uint16 qtype);
- ~DnsQuery();
-
- // Clones |this| verbatim, with ID field of the header set to |id|.
- DnsQuery* CloneWithNewId(uint16 id) const;
-
- // DnsQuery field accessors.
- uint16 id() const;
- base::StringPiece qname() const;
- uint16 qtype() const;
-
- // Returns the Question section of the query. Used when matching the
- // response.
- base::StringPiece question() const;
-
- // IOBuffer accessor to be used for writing out the query.
- IOBufferWithSize* io_buffer() const { return io_buffer_.get(); }
-
- void set_flags(uint16 flags);
-
- private:
- DnsQuery(const DnsQuery& orig, uint16 id);
-
- // Size of the DNS name (*NOT* hostname) we are trying to resolve; used
- // to calculate offsets.
- size_t qname_size_;
-
- // Contains query bytes to be consumed by higher level Write() call.
- scoped_refptr<IOBufferWithSize> io_buffer_;
-
- DISALLOW_COPY_AND_ASSIGN(DnsQuery);
-};
-
-} // namespace net
-
-#endif // NET_DNS_DNS_QUERY_H_
« no previous file with comments | « net/dns/dns_protocol.h ('k') | net/dns/dns_query.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698