Title: [262794] trunk/Source/WebCore
Revision
262794
Author
[email protected]
Date
2020-06-09 08:45:17 -0700 (Tue, 09 Jun 2020)

Log Message

Forward declare MediaKeys/MediaKeySession in Internals.h
https://bugs.webkit.org/show_bug.cgi?id=212965

Reviewed by Xabier Rodriguez-Calvar.

No change of behavior.

* testing/Internals.cpp:
* testing/Internals.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (262793 => 262794)


--- trunk/Source/WebCore/ChangeLog	2020-06-09 15:35:15 UTC (rev 262793)
+++ trunk/Source/WebCore/ChangeLog	2020-06-09 15:45:17 UTC (rev 262794)
@@ -1,5 +1,17 @@
 2020-06-09  Youenn Fablet  <[email protected]>
 
+        Forward declare MediaKeys/MediaKeySession in Internals.h
+        https://bugs.webkit.org/show_bug.cgi?id=212965
+
+        Reviewed by Xabier Rodriguez-Calvar.
+
+        No change of behavior.
+
+        * testing/Internals.cpp:
+        * testing/Internals.h:
+
+2020-06-09  Youenn Fablet  <[email protected]>
+
         Fix two MediaStream tests
         https://bugs.webkit.org/show_bug.cgi?id=208926
         <rdar://problem/60329008>

Modified: trunk/Source/WebCore/testing/Internals.cpp (262793 => 262794)


--- trunk/Source/WebCore/testing/Internals.cpp	2020-06-09 15:35:15 UTC (rev 262793)
+++ trunk/Source/WebCore/testing/Internals.cpp	2020-06-09 15:45:17 UTC (rev 262794)
@@ -121,6 +121,8 @@
 #include "MallocStatistics.h"
 #include "MediaDevices.h"
 #include "MediaEngineConfigurationFactory.h"
+#include "MediaKeySession.h"
+#include "MediaKeys.h"
 #include "MediaPlayer.h"
 #include "MediaProducer.h"
 #include "MediaRecorderProvider.h"

Modified: trunk/Source/WebCore/testing/Internals.h (262793 => 262794)


--- trunk/Source/WebCore/testing/Internals.h	2020-06-09 15:35:15 UTC (rev 262793)
+++ trunk/Source/WebCore/testing/Internals.h	2020-06-09 15:45:17 UTC (rev 262794)
@@ -48,11 +48,6 @@
 #include "MediaElementSession.h"
 #endif
 
-#if ENABLE(ENCRYPTED_MEDIA)
-#include "MediaKeySession.h"
-#include "MediaKeys.h"
-#endif
-
 namespace WebCore {
 
 class AnimationTimeline;
@@ -116,6 +111,11 @@
 class WindowProxy;
 class XMLHttpRequest;
 
+#if ENABLE(ENCRYPTED_MEDIA)
+class MediaKeys;
+class MediaKeySession;
+#endif
+
 #if ENABLE(VIDEO)
 class TextTrackCueGeneric;
 #endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to