Title: [227895] trunk/Source/WebCore
Revision
227895
Author
[email protected]
Date
2018-01-31 01:19:56 -0800 (Wed, 31 Jan 2018)

Log Message

[EME] Fix NavigatorEME::tryNextSupportedConfiguration typo
https://bugs.webkit.org/show_bug.cgi?id=182324

Reviewed by Žan Doberšek.

* Modules/encryptedmedia/NavigatorEME.cpp:
(WebCore::tryNextSupportedConfiguration): Fix
candidateCofiguration typo.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (227894 => 227895)


--- trunk/Source/WebCore/ChangeLog	2018-01-31 09:17:50 UTC (rev 227894)
+++ trunk/Source/WebCore/ChangeLog	2018-01-31 09:19:56 UTC (rev 227895)
@@ -1,3 +1,14 @@
+2018-01-31  Xabier Rodriguez Calvar  <[email protected]>
+
+        [EME] Fix NavigatorEME::tryNextSupportedConfiguration typo
+        https://bugs.webkit.org/show_bug.cgi?id=182324
+
+        Reviewed by Žan Doberšek.
+
+        * Modules/encryptedmedia/NavigatorEME.cpp:
+        (WebCore::tryNextSupportedConfiguration): Fix
+        candidateCofiguration typo.
+
 2018-01-30  Fujii Hironori  <[email protected]>
 
         [WinCairo] syntheticBoldOffset makes a font with embedded bitmap fonts shown as double strike in HiDPI

Modified: trunk/Source/WebCore/Modules/encryptedmedia/NavigatorEME.cpp (227894 => 227895)


--- trunk/Source/WebCore/Modules/encryptedmedia/NavigatorEME.cpp	2018-01-31 09:17:50 UTC (rev 227894)
+++ trunk/Source/WebCore/Modules/encryptedmedia/NavigatorEME.cpp	2018-01-31 09:19:56 UTC (rev 227895)
@@ -77,7 +77,7 @@
         // 6.3.1. Let candidate configuration be the value.
         // 6.3.2. Let supported configuration be the result of executing the Get Supported Configuration
         //        algorithm on implementation, candidate configuration, and origin.
-        MediaKeySystemConfiguration candidateCofiguration = WTFMove(supportedConfigurations.first());
+        MediaKeySystemConfiguration candidateConfiguration = WTFMove(supportedConfigurations.first());
         supportedConfigurations.remove(0);
 
         CDM::SupportedConfigurationCallback callback = [implementation = implementation, supportedConfigurations = WTFMove(supportedConfigurations), promise] (std::optional<MediaKeySystemConfiguration> supportedConfiguration) mutable {
@@ -99,7 +99,7 @@
 
             tryNextSupportedConfiguration(WTFMove(implementation), WTFMove(supportedConfigurations), WTFMove(promise));
         };
-        implementation->getSupportedConfiguration(WTFMove(candidateCofiguration), WTFMove(callback));
+        implementation->getSupportedConfiguration(WTFMove(candidateConfiguration), WTFMove(callback));
         return;
     }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to