summaryrefslogtreecommitdiff
path: root/chromium/media/base/key_system_properties.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/media/base/key_system_properties.cc')
-rw-r--r--chromium/media/base/key_system_properties.cc28
1 files changed, 0 insertions, 28 deletions
diff --git a/chromium/media/base/key_system_properties.cc b/chromium/media/base/key_system_properties.cc
deleted file mode 100644
index 0a52ade933d..00000000000
--- a/chromium/media/base/key_system_properties.cc
+++ /dev/null
@@ -1,28 +0,0 @@
-// Copyright 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "media/base/key_system_properties.h"
-
-namespace media {
-
-bool KeySystemProperties::IsSupportedKeySystem(
- const std::string& key_system) const {
- // By default, only support the base key system.
- return key_system == GetBaseKeySystemName();
-}
-
-bool KeySystemProperties::ShouldUseBaseKeySystemName() const {
- // By default, use the sub key system names for creating CDMs.
- return false;
-}
-
-SupportedCodecs KeySystemProperties::GetSupportedHwSecureCodecs() const {
- return EME_CODEC_NONE;
-}
-
-bool KeySystemProperties::UseAesDecryptor() const {
- return false;
-}
-
-} // namespace media