Home
last modified time | relevance | path

Searched refs:IsConcreteSupportedKeySystem (Results 1 – 7 of 7) sorted by relevance

/external/chromium_org/chrome/browser/media/
Dencrypted_media_istypesupported_browsertest.cc241 bool IsConcreteSupportedKeySystem(const std::string& key) { in IsConcreteSupportedKeySystem() function in chrome::EncryptedMediaIsTypeSupportedTest
396 EXPECT_TRUE(IsConcreteSupportedKeySystem(kPrefixedClearKey)); in IN_PROC_BROWSER_TEST_F()
401 EXPECT_FALSE(IsConcreteSupportedKeySystem(kUnprefixedClearKey)); in IN_PROC_BROWSER_TEST_F()
408 EXPECT_FALSE(IsConcreteSupportedKeySystem(kPrefixedClearKeyParent)); in IN_PROC_BROWSER_TEST_F()
416 EXPECT_FALSE(IsConcreteSupportedKeySystem("webkit-org.w3.ClEaRkEy")); in IN_PROC_BROWSER_TEST_F()
423 EXPECT_FALSE(IsConcreteSupportedKeySystem("webkit-org.")); in IN_PROC_BROWSER_TEST_F()
426 EXPECT_FALSE(IsConcreteSupportedKeySystem("webkit-org")); in IN_PROC_BROWSER_TEST_F()
429 EXPECT_FALSE(IsConcreteSupportedKeySystem("org.")); in IN_PROC_BROWSER_TEST_F()
432 EXPECT_FALSE(IsConcreteSupportedKeySystem("org")); in IN_PROC_BROWSER_TEST_F()
437 EXPECT_FALSE(IsConcreteSupportedKeySystem("webkit-org.w3.")); in IN_PROC_BROWSER_TEST_F()
[all …]
/external/chromium_org/content/renderer/media/crypto/
Dkey_systems_unittest.cc230 EXPECT_FALSE(IsConcreteSupportedKeySystem(std::string())); in TEST_F()
238 EXPECT_TRUE(IsConcreteSupportedKeySystem(kClearKey)); in TEST_F()
245 EXPECT_FALSE(IsConcreteSupportedKeySystem(kPrefixedClearKey)); in TEST_F()
255 EXPECT_FALSE(IsConcreteSupportedKeySystem(kUnrecognized)); in TEST_F()
276 EXPECT_TRUE(IsConcreteSupportedKeySystem(kUsesAes)); in TEST_F()
341 EXPECT_FALSE(IsConcreteSupportedKeySystem(kUsesAesParent)); in TEST_F()
361 EXPECT_FALSE(IsConcreteSupportedKeySystem("org.example.ClEaR")); in TEST_F()
366 EXPECT_FALSE(IsConcreteSupportedKeySystem("org.")); in TEST_F()
369 EXPECT_FALSE(IsConcreteSupportedKeySystem("com")); in TEST_F()
374 EXPECT_FALSE(IsConcreteSupportedKeySystem("org.example.")); in TEST_F()
[all …]
Dkey_systems.cc94 bool IsConcreteSupportedKeySystem(const std::string& key_system);
246 if (IsConcreteSupportedKeySystem(kWidevineKeySystem)) in UpdateSupportedKeySystems()
280 DCHECK(!IsConcreteSupportedKeySystem(concrete_key_system)) in AddConcreteSupportedKeySystem()
298 DCHECK(!IsConcreteSupportedKeySystem(parent_key_system)) in AddConcreteSupportedKeySystem()
307 bool KeySystems::IsConcreteSupportedKeySystem(const std::string& key_system) { in IsConcreteSupportedKeySystem() function in content::KeySystems
487 bool IsConcreteSupportedKeySystem(const std::string& key_system) { in IsConcreteSupportedKeySystem() function
488 return KeySystems::GetInstance().IsConcreteSupportedKeySystem(key_system); in IsConcreteSupportedKeySystem()
Dkey_systems.h33 CONTENT_EXPORT bool IsConcreteSupportedKeySystem(const std::string& key_system);
Dencrypted_media_player_support_impl.cc169 if (!IsConcreteSupportedKeySystem(key_system)) in GenerateKeyRequestInternal()
257 if (!IsConcreteSupportedKeySystem(key_system)) in AddKeyInternal()
289 if (!IsConcreteSupportedKeySystem(key_system)) in CancelKeyRequestInternal()
/external/chromium_org/content/renderer/media/
Dwebcontentdecryptionmodule_impl.cc55 if (!IsConcreteSupportedKeySystem(key_system_ascii)) in Create()
/external/chromium_org/content/renderer/media/android/
Dwebmediaplayer_android.cc1476 IsConcreteSupportedKeySystem(key_system); in IsKeySystemSupported()