| Index: net/http/failing_http_transaction_factory.cc
|
| diff --git a/net/http/failing_http_transaction_factory.cc b/net/http/failing_http_transaction_factory.cc
|
| index 600335344db310f586ecf4b0ccf65dfa8c650d60..2b4fe66c163dfd175b6f613263a36ea0dd3a3280 100644
|
| --- a/net/http/failing_http_transaction_factory.cc
|
| +++ b/net/http/failing_http_transaction_factory.cc
|
| @@ -20,7 +20,7 @@
|
| namespace net {
|
|
|
| class AuthCredentials;
|
| -class BoundNetLog;
|
| +class NetLogWithSource;
|
| class HttpRequestHeaders;
|
| class IOBuffer;
|
| class SSLPrivateKey;
|
| @@ -39,7 +39,7 @@ class FailingHttpTransaction : public HttpTransaction {
|
| // HttpTransaction
|
| int Start(const HttpRequestInfo* request_info,
|
| const CompletionCallback& callback,
|
| - const BoundNetLog& net_log) override;
|
| + const NetLogWithSource& net_log) override;
|
| int RestartIgnoringLastError(const CompletionCallback& callback) override;
|
| int RestartWithCertificate(X509Certificate* client_cert,
|
| SSLPrivateKey* client_private_key,
|
| @@ -84,7 +84,7 @@ FailingHttpTransaction::~FailingHttpTransaction() {}
|
|
|
| int FailingHttpTransaction::Start(const HttpRequestInfo* request_info,
|
| const CompletionCallback& callback,
|
| - const BoundNetLog& net_log) {
|
| + const NetLogWithSource& net_log) {
|
| base::ThreadTaskRunnerHandle::Get()->PostTask(FROM_HERE,
|
| base::Bind(callback, error_));
|
| return ERR_IO_PENDING;
|
|
|