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

Unified Diff: net/http/http_transaction_unittest.h

Issue 126303: Add a "LoadLog*" parameter to transactions, hostresolver, clientsocketpool. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: sync again Created 11 years, 4 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 | « net/http/http_transaction.h ('k') | net/net.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/http_transaction_unittest.h
===================================================================
--- net/http/http_transaction_unittest.h (revision 23124)
+++ net/http/http_transaction_unittest.h (working copy)
@@ -108,9 +108,9 @@
~TestTransactionConsumer() {
}
- void Start(const net::HttpRequestInfo* request) {
+ void Start(net::LoadLog* load_log, const net::HttpRequestInfo* request) {
state_ = STARTING;
- int result = trans_->Start(request, this);
+ int result = trans_->Start(load_log, request, this);
if (result != net::ERR_IO_PENDING)
DidStart(result);
}
@@ -199,7 +199,8 @@
ALLOW_THIS_IN_INITIALIZER_LIST(task_factory_(this)), data_cursor_(0) {
}
- virtual int Start(const net::HttpRequestInfo* request,
+ virtual int Start(net::LoadLog* load_log,
+ const net::HttpRequestInfo* request,
net::CompletionCallback* callback) {
const MockTransaction* t = FindMockTransaction(request->url);
if (!t)
« no previous file with comments | « net/http/http_transaction.h ('k') | net/net.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698