Index: net/socket/socks_client_socket_unittest.cc |
=================================================================== |
--- net/socket/socks_client_socket_unittest.cc (revision 38060) |
+++ net/socket/socks_client_socket_unittest.cc (working copy) |
@@ -103,7 +103,6 @@ |
virtual void AddObserver(Observer* observer) {} |
virtual void RemoveObserver(Observer* observer) {} |
- virtual void Shutdown() {} |
bool HasOutstandingRequest() { |
return outstanding_request_ != NULL; |
@@ -176,12 +175,12 @@ |
// Failure of the server response code |
{ |
{ 0x01, 0x5A, 0x00, 0x00, 0, 0, 0, 0 }, |
- ERR_INVALID_RESPONSE, |
+ ERR_SOCKS_CONNECTION_FAILED, |
}, |
// Failure of the null byte |
{ |
{ 0x00, 0x5B, 0x00, 0x00, 0, 0, 0, 0 }, |
- ERR_FAILED, |
+ ERR_SOCKS_CONNECTION_FAILED, |
}, |
}; |