summaryrefslogtreecommitdiffstats
path: root/net/ssl/default_channel_id_store_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'net/ssl/default_channel_id_store_unittest.cc')
-rw-r--r--net/ssl/default_channel_id_store_unittest.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/net/ssl/default_channel_id_store_unittest.cc b/net/ssl/default_channel_id_store_unittest.cc
index 639e0ac..80f0657 100644
--- a/net/ssl/default_channel_id_store_unittest.cc
+++ b/net/ssl/default_channel_id_store_unittest.cc
@@ -6,6 +6,7 @@
#include <map>
#include <string>
+#include <utility>
#include <vector>
#include "base/bind.h"
@@ -45,7 +46,7 @@ class AsyncGetChannelIDHelper {
scoped_ptr<crypto::ECPrivateKey> key_result) {
err_ = err;
server_identifier_ = server_identifier;
- key_ = key_result.Pass();
+ key_ = std::move(key_result);
called_ = true;
}