| Index: cloud_print/gcp20/prototype/dns_packet_parser.h
|
| diff --git a/cloud_print/gcp20/prototype/dns_packet_parser.h b/cloud_print/gcp20/prototype/dns_packet_parser.h
|
| index 88c6a03b84ff759819ae973ae7b7a92b2546b3b1..38305c2a960dd1e3ae1dc2333a6ddf5cb366cea2 100644
|
| --- a/cloud_print/gcp20/prototype/dns_packet_parser.h
|
| +++ b/cloud_print/gcp20/prototype/dns_packet_parser.h
|
| @@ -5,8 +5,12 @@
|
| #ifndef CLOUD_PRINT_GCP20_PROTOTYPE_DNS_PACKET_PARSER_H_
|
| #define CLOUD_PRINT_GCP20_PROTOTYPE_DNS_PACKET_PARSER_H_
|
|
|
| +#include <stddef.h>
|
| +#include <stdint.h>
|
| +
|
| #include <string>
|
|
|
| +#include "base/macros.h"
|
| #include "net/dns/dns_protocol.h"
|
| #include "net/dns/dns_response.h"
|
|
|
| @@ -16,8 +20,8 @@ struct DnsQueryRecord {
|
| ~DnsQueryRecord() {}
|
|
|
| std::string qname; // in dotted form
|
| - uint16 qtype;
|
| - uint16 qclass;
|
| + uint16_t qtype;
|
| + uint16_t qclass;
|
| };
|
|
|
| // Iterator to walk over records of the DNS response packet. Encapsulates
|
|
|