[ Merge of http://go/wvgerrit/191139 ] Adding an initial flag that include identifiable differences when the feature is enabled or disabled. This is the same commit as ag/25837302. It was reverted due to memory size issues. A follow on CL will address that issue to ease review. Bug: 311951236 Test: WVTS tests Change-Id: I995fb8f4158b3529c2d19a2ee5fd8beec0019f7c
20 lines
611 B
C++
20 lines
611 B
C++
// Copyright 2018 Google LLC. All Rights Reserved. This file and proprietary
|
|
// source code may only be used and distributed under the Widevine License
|
|
// Agreement.
|
|
//
|
|
#ifndef WVCDM_WV_ANDROID_CONSTANTS_H_
|
|
#define WVCDM_WV_ANDROID_CONSTANTS_H_
|
|
|
|
#include <string>
|
|
|
|
namespace wvcdm {
|
|
|
|
// Note: If you change this, make sure you also change
|
|
// https://developers.google.com/widevine/drm/client/oemcrypto/compatibility
|
|
static const std::string kWVAndroidCdmVersion_18_0_1 = "18.0.1";
|
|
static const std::string kWVAndroidCdmVersion_18_0_2 = "18.0.2";
|
|
|
|
} // namespace wvcdm
|
|
|
|
#endif // WVCDM_WV_ANDROID_CONSTANTS_H_
|