| Index: net/ssl/ssl_platform_key_win.cc
|
| diff --git a/net/ssl/ssl_platform_key_win.cc b/net/ssl/ssl_platform_key_win.cc
|
| index 2f3e7c6764ca5883e802fa7822795e808fc0677b..49fc31a67257652082448bcc134de32a21f0b3ae 100644
|
| --- a/net/ssl/ssl_platform_key_win.cc
|
| +++ b/net/ssl/ssl_platform_key_win.cc
|
| @@ -9,6 +9,7 @@
|
|
|
| #include <algorithm>
|
| #include <string>
|
| +#include <utility>
|
| #include <vector>
|
|
|
| #include <openssl/bn.h>
|
| @@ -358,7 +359,7 @@ scoped_refptr<SSLPrivateKey> FetchClientCertPrivateKey(
|
| delegate.reset(new SSLPlatformKeyCAPI(prov_or_key, key_spec, max_length));
|
| }
|
| return make_scoped_refptr(new ThreadedSSLPrivateKey(
|
| - delegate.Pass(), GetSSLPlatformKeyTaskRunner()));
|
| + std::move(delegate), GetSSLPlatformKeyTaskRunner()));
|
| }
|
|
|
| } // namespace net
|
|
|