Title: [262111] trunk/Source/WebCore
- Revision
- 262111
- Author
- [email protected]
- Date
- 2020-05-24 12:29:09 -0700 (Sun, 24 May 2020)
Log Message
Add some missing includes due to unified sources
https://bugs.webkit.org/show_bug.cgi?id=212306
Reviewed by Anders Carlsson.
* Modules/pictureinpicture/HTMLVideoElementPictureInPicture.cpp: Include EnterPictureInPictureEvent.h.
* platform/PictureInPictureObserver.h: Include WeakPtr and forward declare the IntSize class.
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (262110 => 262111)
--- trunk/Source/WebCore/ChangeLog 2020-05-24 19:13:02 UTC (rev 262110)
+++ trunk/Source/WebCore/ChangeLog 2020-05-24 19:29:09 UTC (rev 262111)
@@ -1,3 +1,14 @@
+2020-05-24 Wenson Hsieh <[email protected]>
+
+ Add some missing includes due to unified sources
+ https://bugs.webkit.org/show_bug.cgi?id=212306
+
+ Reviewed by Anders Carlsson.
+
+ * Modules/pictureinpicture/HTMLVideoElementPictureInPicture.cpp: Include EnterPictureInPictureEvent.h.
+
+ * platform/PictureInPictureObserver.h: Include WeakPtr and forward declare the IntSize class.
+
2020-05-24 Sam Weinig <[email protected]>
Extended Color Cleanup: Move SimpleColor into its own files
Modified: trunk/Source/WebCore/Modules/pictureinpicture/HTMLVideoElementPictureInPicture.cpp (262110 => 262111)
--- trunk/Source/WebCore/Modules/pictureinpicture/HTMLVideoElementPictureInPicture.cpp 2020-05-24 19:13:02 UTC (rev 262110)
+++ trunk/Source/WebCore/Modules/pictureinpicture/HTMLVideoElementPictureInPicture.cpp 2020-05-24 19:29:09 UTC (rev 262111)
@@ -29,6 +29,7 @@
#if ENABLE(PICTURE_IN_PICTURE_API)
+#include "EnterPictureInPictureEvent.h"
#include "EventNames.h"
#include "HTMLVideoElement.h"
#include "JSDOMPromiseDeferred.h"
Modified: trunk/Source/WebCore/platform/PictureInPictureObserver.h (262110 => 262111)
--- trunk/Source/WebCore/platform/PictureInPictureObserver.h 2020-05-24 19:13:02 UTC (rev 262110)
+++ trunk/Source/WebCore/platform/PictureInPictureObserver.h 2020-05-24 19:29:09 UTC (rev 262111)
@@ -27,8 +27,12 @@
#if ENABLE(PICTURE_IN_PICTURE_API)
+#include <wtf/WeakPtr.h>
+
namespace WebCore {
+class IntSize;
+
class PictureInPictureObserver : public CanMakeWeakPtr<PictureInPictureObserver> {
public:
virtual ~PictureInPictureObserver() { };
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes