| Index: net/dns/dns_transaction.h
|
| diff --git a/net/dns/dns_transaction.h b/net/dns/dns_transaction.h
|
| index faf4f64e79d85859ec84e3aa42f99de44d14033c..e338cb929563103092b2751281f3812cd2ce1480 100644
|
| --- a/net/dns/dns_transaction.h
|
| +++ b/net/dns/dns_transaction.h
|
| @@ -5,9 +5,10 @@
|
| #ifndef NET_DNS_DNS_TRANSACTION_H_
|
| #define NET_DNS_DNS_TRANSACTION_H_
|
|
|
| +#include <stdint.h>
|
| +
|
| #include <string>
|
|
|
| -#include "base/basictypes.h"
|
| #include "base/callback_forward.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "net/base/net_export.h"
|
| @@ -32,7 +33,7 @@ class NET_EXPORT_PRIVATE DnsTransaction {
|
| virtual const std::string& GetHostname() const = 0;
|
|
|
| // Returns the |qtype|.
|
| - virtual uint16 GetType() const = 0;
|
| + virtual uint16_t GetType() const = 0;
|
|
|
| // Starts the transaction. Always completes asynchronously.
|
| virtual void Start() = 0;
|
| @@ -62,7 +63,7 @@ class NET_EXPORT_PRIVATE DnsTransactionFactory {
|
| // The |net_log| is used as the parent log.
|
| virtual scoped_ptr<DnsTransaction> CreateTransaction(
|
| const std::string& hostname,
|
| - uint16 qtype,
|
| + uint16_t qtype,
|
| const CallbackType& callback,
|
| const BoundNetLog& net_log) WARN_UNUSED_RESULT = 0;
|
|
|
|
|