blob: 671ce037730f3438631836aea3c2906f97585abe [file] [log] [blame]
// Copyright 2014 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 "chromecast/media/base/key_systems_common.h"
namespace chromecast {
namespace media {
CastKeySystem GetPlatformKeySystemByName(const std::string& key_system_name) {
return KEY_SYSTEM_NONE;
}
#if defined(OS_ANDROID)
std::vector<::media::MediaClientAndroid::KeySystemUuidMap::value_type>
GetPlatformKeySystemUUIDMappings() {
return std::vector<
::media::MediaClientAndroid::KeySystemUuidMap::value_type>();
}
#endif
} // namespace media
} // namespace chromecast