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

Unified Diff: chrome/browser/net/connection_tester.h

Issue 10796112: Use a NetLog for test requests sent by about:net-internals (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Last CL removed wrong line break. :( Created 8 years, 5 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 | « no previous file | chrome/browser/net/connection_tester.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
};
« no previous file with comments | « no previous file | chrome/browser/net/connection_tester.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698