Chromium Code Reviews| Index: net/dns/dns_transaction.h |
| diff --git a/net/dns/dns_transaction.h b/net/dns/dns_transaction.h |
| index 038f4b27d44bfccfb5cdf302a07a20e9b4184afe..adfe0ac8e1888a01fd3e95d5e8a11d6721e405c1 100644 |
| --- a/net/dns/dns_transaction.h |
| +++ b/net/dns/dns_transaction.h |
| @@ -38,6 +38,9 @@ class NET_EXPORT_PRIVATE DnsTransaction { |
| // Starts the transaction. Returns the net error on synchronous failure or |
| // ERR_IO_PENDING in which case the result will be passed via the callback. |
| virtual int Start() = 0; |
| + |
| + // Returns the net_log for this transaction. |
|
mmenke
2012/02/14 18:46:00
nit: "BoundNetLog". |net_log| is a private varia
|
| + virtual const BoundNetLog& net_log() const = 0; |
| }; |
| // Creates DnsTransaction which performs asynchronous DNS search. |