Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (264332 => 264333)
--- trunk/Source/_javascript_Core/ChangeLog 2020-07-14 05:44:25 UTC (rev 264332)
+++ trunk/Source/_javascript_Core/ChangeLog 2020-07-14 07:12:04 UTC (rev 264333)
@@ -1,3 +1,9 @@
+2020-07-14 Fujii Hironori <[email protected]>
+
+ Unreviewed non-unified build fixes
+
+ * runtime/IntlObject.cpp:
+
2020-07-13 Fujii Hironori <[email protected]>
Unreviewed non-unified build fixes
Modified: trunk/Source/_javascript_Core/runtime/IntlObject.cpp (264332 => 264333)
--- trunk/Source/_javascript_Core/runtime/IntlObject.cpp 2020-07-14 05:44:25 UTC (rev 264332)
+++ trunk/Source/_javascript_Core/runtime/IntlObject.cpp 2020-07-14 07:12:04 UTC (rev 264333)
@@ -40,6 +40,7 @@
#include "IntlLocalePrototype.h"
#include "IntlNumberFormatConstructor.h"
#include "IntlNumberFormatPrototype.h"
+#include "IntlObjectInlines.h"
#include "IntlPluralRulesConstructor.h"
#include "IntlPluralRulesPrototype.h"
#include "IntlRelativeTimeFormatConstructor.h"
Modified: trunk/Source/WebCore/ChangeLog (264332 => 264333)
--- trunk/Source/WebCore/ChangeLog 2020-07-14 05:44:25 UTC (rev 264332)
+++ trunk/Source/WebCore/ChangeLog 2020-07-14 07:12:04 UTC (rev 264333)
@@ -1,3 +1,13 @@
+2020-07-14 Fujii Hironori <[email protected]>
+
+ Unreviewed non-unified build fixes
+
+ * bindings/js/CommonVM.cpp:
+ * html/canvas/CanvasRenderingContext2DBase.cpp:
+ * html/canvas/CanvasStyle.cpp:
+ * platform/graphics/GradientImage.cpp:
+ * rendering/svg/RenderSVGPath.cpp:
+
2020-07-13 Fujii Hironori <[email protected]>
Unreviewed non-unified build fixes
Modified: trunk/Source/WebCore/bindings/js/CommonVM.cpp (264332 => 264333)
--- trunk/Source/WebCore/bindings/js/CommonVM.cpp 2020-07-14 05:44:25 UTC (rev 264332)
+++ trunk/Source/WebCore/bindings/js/CommonVM.cpp 2020-07-14 07:12:04 UTC (rev 264333)
@@ -35,6 +35,7 @@
#include <_javascript_Core/MachineStackMarker.h>
#include <_javascript_Core/VM.h>
#include <wtf/MainThread.h>
+#include <wtf/RunLoop.h>
#include <wtf/text/AtomString.h>
#if PLATFORM(IOS_FAMILY)
Modified: trunk/Source/WebCore/html/canvas/CanvasRenderingContext2DBase.cpp (264332 => 264333)
--- trunk/Source/WebCore/html/canvas/CanvasRenderingContext2DBase.cpp 2020-07-14 05:44:25 UTC (rev 264332)
+++ trunk/Source/WebCore/html/canvas/CanvasRenderingContext2DBase.cpp 2020-07-14 07:12:04 UTC (rev 264333)
@@ -48,6 +48,7 @@
#include "DisplayListRecorder.h"
#include "DisplayListReplayer.h"
#include "FloatQuad.h"
+#include "Gradient.h"
#include "HTMLCanvasElement.h"
#include "HTMLImageElement.h"
#include "HTMLVideoElement.h"
Modified: trunk/Source/WebCore/html/canvas/CanvasStyle.cpp (264332 => 264333)
--- trunk/Source/WebCore/html/canvas/CanvasStyle.cpp 2020-07-14 05:44:25 UTC (rev 264332)
+++ trunk/Source/WebCore/html/canvas/CanvasStyle.cpp 2020-07-14 07:12:04 UTC (rev 264333)
@@ -34,6 +34,7 @@
#include "CanvasGradient.h"
#include "CanvasPattern.h"
#include "ColorConversion.h"
+#include "Gradient.h"
#include "GraphicsContext.h"
#include "HTMLCanvasElement.h"
#if ENABLE(OFFSCREEN_CANVAS)
Modified: trunk/Source/WebCore/platform/graphics/GradientImage.cpp (264332 => 264333)
--- trunk/Source/WebCore/platform/graphics/GradientImage.cpp 2020-07-14 05:44:25 UTC (rev 264332)
+++ trunk/Source/WebCore/platform/graphics/GradientImage.cpp 2020-07-14 07:12:04 UTC (rev 264333)
@@ -26,6 +26,7 @@
#include "config.h"
#include "GradientImage.h"
+#include "Gradient.h"
#include "GraphicsContext.h"
#include "ImageBuffer.h"
Modified: trunk/Source/WebCore/rendering/svg/RenderSVGPath.cpp (264332 => 264333)
--- trunk/Source/WebCore/rendering/svg/RenderSVGPath.cpp 2020-07-14 05:44:25 UTC (rev 264332)
+++ trunk/Source/WebCore/rendering/svg/RenderSVGPath.cpp 2020-07-14 07:12:04 UTC (rev 264333)
@@ -28,6 +28,7 @@
#include "config.h"
#include "RenderSVGPath.h"
+#include "Gradient.h"
#include "SVGPathElement.h"
#include "SVGSubpathData.h"
#include <wtf/IsoMallocInlines.h>
Modified: trunk/Source/WebKit/ChangeLog (264332 => 264333)
--- trunk/Source/WebKit/ChangeLog 2020-07-14 05:44:25 UTC (rev 264332)
+++ trunk/Source/WebKit/ChangeLog 2020-07-14 07:12:04 UTC (rev 264333)
@@ -1,3 +1,13 @@
+2020-07-14 Fujii Hironori <[email protected]>
+
+ Unreviewed non-unified build fixes
+
+ * NetworkProcess/NetworkSocketStream.cpp:
+ * UIProcess/API/C/WKWebsiteDataStoreRef.cpp:
+ (WKWebsiteDataStoreGetAllStorageAccessEntries):
+ * UIProcess/WebContextMenuProxy.cpp:
+ * UIProcess/WebOpenPanelResultListenerProxy.h:
+
2020-07-13 Chris Dumez <[email protected]>
Add more logging for navigation policy decisions on UIProcess side
Modified: trunk/Source/WebKit/NetworkProcess/NetworkSocketStream.cpp (264332 => 264333)
--- trunk/Source/WebKit/NetworkProcess/NetworkSocketStream.cpp 2020-07-14 05:44:25 UTC (rev 264332)
+++ trunk/Source/WebKit/NetworkProcess/NetworkSocketStream.cpp 2020-07-14 07:12:04 UTC (rev 264333)
@@ -31,6 +31,7 @@
#include "WebSocketStreamMessages.h"
#include <WebCore/CookieRequestHeaderFieldProxy.h>
#include <WebCore/SocketStreamError.h>
+#include <wtf/CryptographicallyRandomNumber.h>
namespace WebKit {
using namespace WebCore;
Modified: trunk/Source/WebKit/UIProcess/API/C/WKWebsiteDataStoreRef.cpp (264332 => 264333)
--- trunk/Source/WebKit/UIProcess/API/C/WKWebsiteDataStoreRef.cpp 2020-07-14 05:44:25 UTC (rev 264332)
+++ trunk/Source/WebKit/UIProcess/API/C/WKWebsiteDataStoreRef.cpp 2020-07-14 07:12:04 UTC (rev 264333)
@@ -31,6 +31,7 @@
#include "ShouldGrandfatherStatistics.h"
#include "WKAPICast.h"
#include "WKDictionary.h"
+#include "WKMutableArray.h"
#include "WKNumber.h"
#include "WKRetainPtr.h"
#include "WKSecurityOriginRef.h"
@@ -828,7 +829,7 @@
void WKWebsiteDataStoreGetAllStorageAccessEntries(WKWebsiteDataStoreRef dataStoreRef, WKPageRef pageRef, void* context, WKWebsiteDataStoreGetAllStorageAccessEntriesFunction callback)
{
#if ENABLE(RESOURCE_LOAD_STATISTICS)
- WebKit::toImpl(dataStoreRef)->getAllStorageAccessEntries(toImpl(pageRef)->identifier(), [context, callback] (Vector<String>&& domains) {
+ WebKit::toImpl(dataStoreRef)->getAllStorageAccessEntries(WebKit::toImpl(pageRef)->identifier(), [context, callback] (Vector<String>&& domains) {
auto domainArrayRef = WKMutableArrayCreate();
for (auto domain : domains)
WKArrayAppendItem(domainArrayRef, adoptWK(WKStringCreateWithUTF8CString(domain.utf8().data())).get());
Modified: trunk/Source/WebKit/UIProcess/WebContextMenuProxy.cpp (264332 => 264333)
--- trunk/Source/WebKit/UIProcess/WebContextMenuProxy.cpp 2020-07-14 05:44:25 UTC (rev 264332)
+++ trunk/Source/WebKit/UIProcess/WebContextMenuProxy.cpp 2020-07-14 07:12:04 UTC (rev 264333)
@@ -30,6 +30,8 @@
#include "APIContextMenuClient.h"
#include "WebPageMessages.h"
+#include "WebPageProxy.h"
+#include "WebProcessProxy.h"
namespace WebKit {
Modified: trunk/Source/WebKit/UIProcess/WebOpenPanelResultListenerProxy.h (264332 => 264333)
--- trunk/Source/WebKit/UIProcess/WebOpenPanelResultListenerProxy.h 2020-07-14 05:44:25 UTC (rev 264332)
+++ trunk/Source/WebKit/UIProcess/WebOpenPanelResultListenerProxy.h 2020-07-14 07:12:04 UTC (rev 264333)
@@ -28,6 +28,7 @@
#include "APIObject.h"
#include <wtf/Forward.h>
#include <wtf/RefPtr.h>
+#include <wtf/Vector.h>
namespace API {
class Array;