| Index: media/blink/webcontentdecryptionmodule_impl.cc
|
| diff --git a/media/blink/webcontentdecryptionmodule_impl.cc b/media/blink/webcontentdecryptionmodule_impl.cc
|
| index 81a0ee832c1fafeeb6185f593f596c792a498873..8619107f2497682dda90c3ad0f8ccae41597d5a3 100644
|
| --- a/media/blink/webcontentdecryptionmodule_impl.cc
|
| +++ b/media/blink/webcontentdecryptionmodule_impl.cc
|
| @@ -2,7 +2,9 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "webcontentdecryptionmodule_impl.h"
|
| +#include "media/blink/webcontentdecryptionmodule_impl.h"
|
| +
|
| +#include <utility>
|
|
|
| #include "base/bind.h"
|
| #include "base/logging.h"
|
| @@ -68,7 +70,7 @@ void WebContentDecryptionModuleImpl::Create(
|
| // be destructed.
|
| scoped_refptr<CdmSessionAdapter> adapter(new CdmSessionAdapter());
|
| adapter->CreateCdm(cdm_factory, key_system_ascii, security_origin_as_gurl,
|
| - cdm_config, result.Pass());
|
| + cdm_config, std::move(result));
|
| }
|
|
|
| WebContentDecryptionModuleImpl::WebContentDecryptionModuleImpl(
|
|
|