| Index: components/resource_provider/resource_provider_app.cc
|
| diff --git a/components/resource_provider/resource_provider_app.cc b/components/resource_provider/resource_provider_app.cc
|
| index 60d230f6231cf9d58ea5b7ea692187935dba4610..56506e1c1fe58afda8ac9220e6487c5a3ead9fe5 100644
|
| --- a/components/resource_provider/resource_provider_app.cc
|
| +++ b/components/resource_provider/resource_provider_app.cc
|
| @@ -4,6 +4,8 @@
|
|
|
| #include "components/resource_provider/resource_provider_app.h"
|
|
|
| +#include <utility>
|
| +
|
| #include "components/resource_provider/file_utils.h"
|
| #include "components/resource_provider/resource_provider_impl.h"
|
| #include "mojo/application/public/cpp/application_connection.h"
|
| @@ -44,7 +46,7 @@ void ResourceProviderApp::Create(
|
| CHECK(!app_path.empty());
|
| bindings_.AddBinding(
|
| new ResourceProviderImpl(app_path, resource_provider_app_url_),
|
| - request.Pass());
|
| + std::move(request));
|
| }
|
|
|
| } // namespace resource_provider
|
|
|