1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "chromecast/media/base/decrypt_context_impl_clearkey.h"
7 #include "base/logging.h"
8 #include "crypto/symmetric_key.h"
10 namespace chromecast
{
13 DecryptContextImplClearKey::DecryptContextImplClearKey(
14 crypto::SymmetricKey
* key
)
15 : DecryptContextImpl(KEY_SYSTEM_CLEAR_KEY
), key_(key
) {
19 DecryptContextImplClearKey::~DecryptContextImplClearKey() {}
21 crypto::SymmetricKey
* DecryptContextImplClearKey::GetKey() const {
26 } // namespace chromecast