blob: 46fd2d3e06b3865e4689ffe74b8e24ef97e399a8 [file] [log] [blame]
// Copyright 2016 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/cdm/cast_cdm_context.h"
namespace chromecast {
namespace media {
::media::Decryptor* CastCdmContext::GetDecryptor() {
// Subclasses providing CdmContext for a ClearKey CDM implementation must
// override this method to provide the Decryptor. Subclasses providing DRM
// implementations should return nullptr here.
return nullptr;
}
} // namespace media
} // namespace chromecast