// Copyright 2013 Google Inc. All Rights Reserved. #ifndef CDM_BASE_PROPERTIES_CONFIGURATION_H_ #define CDM_BASE_PROPERTIES_CONFIGURATION_H_ #include "wv_cdm_constants.h" #include "properties.h" namespace wvcdm { // If false begin license usage on first playback const bool kPropertyBeginLicenseUsageWhenReceived = false; // If false, calls to Generate Key request, after the first one, // will result in a renewal request being generated const bool kPropertyRequireExplicitRenewRequest = false; // Set only one of the three below to true. If secure buffer // is selected, fallback to userspace buffers may occur // if L1/L2 OEMCrypto APIs fail const bool kPropertyOemCryptoUseSecureBuffers = true; const bool kPropertyOemCryptoUseFifo = false; const bool kPropertyOemCryptoUseUserSpaceBuffers = false; // If false, keyboxes will be used as client identification // and passed as the token in the license request const bool kPropertyUseCertificatesAsIdentification = false; } // namespace wvcdm #endif // CDM_BASE_WV_PROPERTIES_CONFIGURATION_H_