| Index: chrome/browser/devtools/devtools_network_interceptor.cc
|
| diff --git a/chrome/browser/devtools/devtools_network_interceptor.cc b/chrome/browser/devtools/devtools_network_interceptor.cc
|
| index 20486e2f46303a575969aa9fadb914d25ec7f4a3..5b3fc87ae1c18a56ba72fa356179085a877d215a 100644
|
| --- a/chrome/browser/devtools/devtools_network_interceptor.cc
|
| +++ b/chrome/browser/devtools/devtools_network_interceptor.cc
|
| @@ -5,9 +5,9 @@
|
| #include "chrome/browser/devtools/devtools_network_interceptor.h"
|
|
|
| #include <stddef.h>
|
| -
|
| #include <algorithm>
|
| #include <limits>
|
| +#include <utility>
|
|
|
| #include "base/time/time.h"
|
| #include "chrome/browser/devtools/devtools_network_conditions.h"
|
| @@ -69,7 +69,7 @@ void DevToolsNetworkInterceptor::UpdateConditions(
|
| if (conditions_->IsThrottling())
|
| UpdateThrottled(now);
|
|
|
| - conditions_ = conditions.Pass();
|
| + conditions_ = std::move(conditions);
|
|
|
| bool offline = conditions_->offline();
|
| if (offline || !conditions_->IsThrottling()) {
|
|
|