| Index: chrome/browser/component_updater/widevine_cdm_component_installer.cc
|
| diff --git a/chrome/browser/component_updater/widevine_cdm_component_installer.cc b/chrome/browser/component_updater/widevine_cdm_component_installer.cc
|
| index 66698f376a201e54b377d4e0e8172a44efb6af51..811321c2a805ebf9d06256a6b7a0c2b5a79f8b40 100644
|
| --- a/chrome/browser/component_updater/widevine_cdm_component_installer.cc
|
| +++ b/chrome/browser/component_updater/widevine_cdm_component_installer.cc
|
| @@ -83,8 +83,8 @@ const char kWidevineCdmArch[] =
|
| // All values that are lists are delimited by commas. No trailing commas.
|
| // For example, "1,2,4".
|
| const char kCdmValueDelimiter = ',';
|
| -COMPILE_ASSERT(kCdmValueDelimiter == kCdmSupportedCodecsValueDelimiter,
|
| - cdm_delimiters_do_not_match);
|
| +static_assert(kCdmValueDelimiter == kCdmSupportedCodecsValueDelimiter,
|
| + "cdm delimiters must match");
|
| // The following entries are required.
|
| // Interface versions are lists of integers (e.g. "1" or "1,2,4").
|
| // These are checked in this file before registering the CDM.
|
|
|