Index: chrome/browser/net/connection_tester.h |
=================================================================== |
--- chrome/browser/net/connection_tester.h (revision 148559) |
+++ chrome/browser/net/connection_tester.h (working copy) |
@@ -13,6 +13,7 @@ |
#include "net/base/completion_callback.h" |
namespace net { |
+class NetLog; |
class URLRequestContext; |
} // namespace net |
@@ -128,7 +129,8 @@ |
// |delegate| is owned by the caller, and must remain valid for the lifetime |
// of ConnectionTester. |
ConnectionTester(Delegate* delegate, |
- net::URLRequestContext* proxy_request_context); |
+ net::URLRequestContext* proxy_request_context, |
+ net::NetLog* net_log); |
// Note that destruction cancels any in-progress tests. |
~ConnectionTester(); |
@@ -176,6 +178,8 @@ |
net::URLRequestContext* const proxy_request_context_; |
+ net::NetLog* net_log_; |
+ |
DISALLOW_COPY_AND_ASSIGN(ConnectionTester); |
}; |