Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5)

Unified Diff: chromecast/media/cma/backend/video_pipeline_device.cc

Issue 622853002: Chromecast: adds interfaces for hardware layer of CMA pipeline. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@cma-decrypt-context
Patch Set: style feedback/fixes Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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..d00c2cd4afe904e29a56ff23fc8e548214086fdf 100644
--- a/chromecast/media/base/decrypt_context.cc
+++ b/chromecast/media/cma/backend/video_pipeline_device.cc
@@ -2,20 +2,21 @@
// 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

Powered by Google App Engine
This is Rietveld 408576698