Index: media/blink/webencryptedmediaclient_impl.cc |
diff --git a/media/blink/webencryptedmediaclient_impl.cc b/media/blink/webencryptedmediaclient_impl.cc |
index 940805b8e6db3d162cbc4b4e0e0d089d973e2acb..ab226bfa02c90b6f49ee7cc6d530652e450cf800 100644 |
--- a/media/blink/webencryptedmediaclient_impl.cc |
+++ b/media/blink/webencryptedmediaclient_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 "webencryptedmediaclient_impl.h" |
+#include "media/blink/webencryptedmediaclient_impl.h" |
+ |
+#include <utility> |
#include "base/bind.h" |
#include "base/metrics/histogram.h" |
@@ -124,7 +126,7 @@ void WebEncryptedMediaClientImpl::CreateCdm( |
const CdmConfig& cdm_config, |
scoped_ptr<blink::WebContentDecryptionModuleResult> result) { |
WebContentDecryptionModuleImpl::Create( |
- cdm_factory_, key_system, security_origin, cdm_config, result.Pass()); |
+ cdm_factory_, key_system, security_origin, cdm_config, std::move(result)); |
} |
void WebEncryptedMediaClientImpl::OnRequestSucceeded( |