| Index: net/http/http_transaction_unittest.h
 | 
| diff --git a/net/http/http_transaction_unittest.h b/net/http/http_transaction_unittest.h
 | 
| index 0a11bb52602092f3cfaaa0a4376ea9713eb3a39b..51136d352dbfbb4ee627a424ceb32af0aae32dfb 100644
 | 
| --- a/net/http/http_transaction_unittest.h
 | 
| +++ b/net/http/http_transaction_unittest.h
 | 
| @@ -24,6 +24,7 @@
 | 
|  #include "net/http/http_response_info.h"
 | 
|  
 | 
|  namespace net {
 | 
| +class AuthData;
 | 
|  class IOBuffer;
 | 
|  }
 | 
|  
 | 
| @@ -63,6 +64,7 @@ struct MockTransaction {
 | 
|    int test_mode;
 | 
|    MockTransactionHandler handler;
 | 
|    int cert_status;
 | 
| +  string16 tls_username;
 | 
|  };
 | 
|  
 | 
|  extern const MockTransaction kSimpleGET_Transaction;
 | 
| @@ -165,6 +167,10 @@ class MockNetworkTransaction : public net::HttpTransaction {
 | 
|    virtual int RestartWithCertificate(net::X509Certificate* client_cert,
 | 
|                                       net::CompletionCallback* callback);
 | 
|  
 | 
| +  virtual void SetTLSLoginAuthData(net::AuthData* auth_data);
 | 
| +
 | 
| +  virtual int RestartWithTLSLogin(net::CompletionCallback* callback);
 | 
| +
 | 
|    virtual int RestartWithAuth(const string16& username,
 | 
|                                const string16& password,
 | 
|                                net::CompletionCallback* callback);
 | 
| 
 |