| Index: content/browser/media/encrypted_media_browsertest.cc
|
| diff --git a/content/browser/media/encrypted_media_browsertest.cc b/content/browser/media/encrypted_media_browsertest.cc
|
| index 0a3bdc7847be0b0abba5fb8082272bf779821707..af7723debfb6be6f6fbe45f307ca1ac8ac22d763 100644
|
| --- a/content/browser/media/encrypted_media_browsertest.cc
|
| +++ b/content/browser/media/encrypted_media_browsertest.cc
|
| @@ -5,7 +5,6 @@
|
| #include "base/command_line.h"
|
| #include "base/strings/string_number_conversions.h"
|
| #include "base/strings/utf_string_conversions.h"
|
| -#include "base/test/scoped_feature_list.h"
|
| #include "build/build_config.h"
|
| #include "content/browser/media/media_browsertest.h"
|
| #include "content/public/common/content_switches.h"
|
| @@ -14,7 +13,6 @@
|
| #include "media/base/media.h"
|
| #include "media/base/media_switches.h"
|
| #include "media/mojo/features.h"
|
| -#include "ppapi/features/features.h"
|
|
|
| #if defined(OS_ANDROID)
|
| #include "base/android/build_info.h"
|
| @@ -24,11 +22,12 @@
|
| #include "base/win/windows_version.h"
|
| #endif
|
|
|
| -#if BUILDFLAG(ENABLE_MOJO_CDM) && !BUILDFLAG(ENABLE_PEPPER_CDMS)
|
| +#if BUILDFLAG(ENABLE_MOJO_CDM)
|
| // When mojo CDM is enabled, External Clear Key is supported in //content/shell/
|
| // by using mojo CDM with AesDecryptor running in the remote (e.g. GPU or
|
| -// Browser) process. When pepper CDM is supported, External Clear Key is
|
| -// supported in chrome/, which is tested in browser_tests.
|
| +// Browser) process.
|
| +// Note that External Clear Key is also supported in chrome/ when pepper CDM is
|
| +// used, which is tested in browser_tests.
|
| #define SUPPORTS_EXTERNAL_CLEAR_KEY_IN_CONTENT_SHELL
|
| #endif
|
|
|
| @@ -153,12 +152,10 @@
|
| void SetUpCommandLine(base::CommandLine* command_line) override {
|
| command_line->AppendSwitch(switches::kIgnoreAutoplayRestrictionsForTests);
|
| #if defined(SUPPORTS_EXTERNAL_CLEAR_KEY_IN_CONTENT_SHELL)
|
| - scoped_feature_list_.InitWithFeatures({media::kExternalClearKeyForTesting},
|
| - {});
|
| -#endif
|
| - }
|
| -
|
| - base::test::ScopedFeatureList scoped_feature_list_;
|
| + command_line->AppendSwitchASCII(switches::kEnableFeatures,
|
| + media::kExternalClearKeyForTesting.name);
|
| +#endif
|
| + }
|
| };
|
|
|
| using ::testing::Combine;
|
|
|