summaryrefslogtreecommitdiffstats
path: root/net/log/test_net_log_entry.cc
diff options
context:
space:
mode:
Diffstat (limited to 'net/log/test_net_log_entry.cc')
-rw-r--r--net/log/test_net_log_entry.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/net/log/test_net_log_entry.cc b/net/log/test_net_log_entry.cc
index 34e9ffa..e9fd982 100644
--- a/net/log/test_net_log_entry.cc
+++ b/net/log/test_net_log_entry.cc
@@ -4,6 +4,8 @@
#include "net/log/test_net_log_entry.h"
+#include <utility>
+
#include "base/json/json_writer.h"
#include "base/logging.h"
#include "base/values.h"
@@ -19,7 +21,7 @@ TestNetLogEntry::TestNetLogEntry(NetLog::EventType type,
time(time),
source(source),
phase(phase),
- params(params.Pass()) {
+ params(std::move(params)) {
// Only entries without a NetLog should have an invalid source.
CHECK(source.IsValid());
}