| Index: content/child/resource_scheduling_filter.cc
|
| diff --git a/content/child/resource_scheduling_filter.cc b/content/child/resource_scheduling_filter.cc
|
| index 0c086a4d7fe5a95796a70f12be1959afb65d5b7c..ba05fdc5a36284fe71179b78c5e648f31afbb75a 100644
|
| --- a/content/child/resource_scheduling_filter.cc
|
| +++ b/content/child/resource_scheduling_filter.cc
|
| @@ -4,6 +4,8 @@
|
|
|
| #include "content/child/resource_scheduling_filter.h"
|
|
|
| +#include <utility>
|
| +
|
| #include "base/bind.h"
|
| #include "base/location.h"
|
| #include "content/child/resource_dispatcher.h"
|
| @@ -82,7 +84,7 @@ void ResourceSchedulingFilter::SetRequestIdTaskRunner(
|
| int id, scoped_ptr<blink::WebTaskRunner> web_task_runner) {
|
| base::AutoLock lock(request_id_to_task_runner_map_lock_);
|
| request_id_to_task_runner_map_.insert(
|
| - std::make_pair(id, web_task_runner.Pass()));
|
| + std::make_pair(id, std::move(web_task_runner)));
|
| }
|
|
|
| void ResourceSchedulingFilter::ClearRequestIdTaskRunner(int id) {
|
|
|