Bug: 327241925 Test: dumpsys android.hardware.drm.IDrmFactory/widevine (cherry picked from https://googleplex-android-review.googlesource.com/q/commit:9f32150e5fae37bc200eaaca3794605a8bf17806) Merged-In: Ice412cd2739f0c8a95af488cf565a3abf484200a Change-Id: Ice412cd2739f0c8a95af488cf565a3abf484200a
19 lines
539 B
C++
19 lines
539 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";
|
|
|
|
} // namespace wvcdm
|
|
|
|
#endif // WVCDM_WV_ANDROID_CONSTANTS_H_
|