| Index: chromecast/media/cma/backend/video_pipeline_device.cc
|
| diff --git a/chromecast/media/base/decrypt_context.cc b/chromecast/media/cma/backend/video_pipeline_device.cc
|
| similarity index 50%
|
| copy from chromecast/media/base/decrypt_context.cc
|
| copy to chromecast/media/cma/backend/video_pipeline_device.cc
|
| index 38da3af7c06bba880ddd69c0dbce3dcc4bdbbeb7..7a2e9f9d74c99a484e80f43f8496f23a020badd6 100644
|
| --- a/chromecast/media/base/decrypt_context.cc
|
| +++ b/chromecast/media/cma/backend/video_pipeline_device.cc
|
| @@ -2,21 +2,23 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "chromecast/media/base/decrypt_context.h"
|
| +#include "chromecast/media/cma/backend/video_pipeline_device.h"
|
|
|
| namespace chromecast {
|
| namespace media {
|
|
|
| -DecryptContext::DecryptContext(CastKeySystem key_system)
|
| - : key_system_(key_system) {
|
| +VideoPipelineDevice::VideoClient::VideoClient() {
|
| }
|
|
|
| -DecryptContext::~DecryptContext() {
|
| +VideoPipelineDevice::VideoClient::~VideoClient() {
|
| }
|
|
|
| -crypto::SymmetricKey* DecryptContext::GetKey() const {
|
| - return NULL;
|
| +VideoPipelineDevice::VideoPipelineDevice() {
|
| +}
|
| +
|
| +VideoPipelineDevice::~VideoPipelineDevice() {
|
| }
|
|
|
| } // namespace media
|
| } // namespace chromecast
|
| +
|
|
|