| Index: net/socket/socket_test_util.cc
|
| diff --git a/net/socket/socket_test_util.cc b/net/socket/socket_test_util.cc
|
| index e2b4d2ff2e8d054aa0788997d4db511210296421..1bc26225487fa2e810175d98decd08424f74e45a 100644
|
| --- a/net/socket/socket_test_util.cc
|
| +++ b/net/socket/socket_test_util.cc
|
| @@ -833,8 +833,9 @@ ChannelIDService* MockClientSocket::GetChannelIDService() const {
|
| return NULL;
|
| }
|
|
|
| -Error MockClientSocket::GetSignedEKMForTokenBinding(crypto::ECPrivateKey* key,
|
| - std::vector<uint8_t>* out) {
|
| +Error MockClientSocket::GetTokenBindingSignature(crypto::ECPrivateKey* key,
|
| + TokenBindingType tb_type,
|
| + std::vector<uint8_t>* out) {
|
| NOTREACHED();
|
| return ERR_NOT_IMPLEMENTED;
|
| }
|
| @@ -1229,9 +1230,9 @@ ChannelIDService* MockSSLClientSocket::GetChannelIDService() const {
|
| return data_->channel_id_service;
|
| }
|
|
|
| -Error MockSSLClientSocket::GetSignedEKMForTokenBinding(
|
| - crypto::ECPrivateKey* key,
|
| - std::vector<uint8_t>* out) {
|
| +Error MockSSLClientSocket::GetTokenBindingSignature(crypto::ECPrivateKey* key,
|
| + TokenBindingType tb_type,
|
| + std::vector<uint8_t>* out) {
|
| out->push_back('A');
|
| return OK;
|
| }
|
|
|