Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (245300 => 245301)
--- trunk/Source/_javascript_Core/ChangeLog 2019-05-14 20:03:46 UTC (rev 245300)
+++ trunk/Source/_javascript_Core/ChangeLog 2019-05-14 20:30:38 UTC (rev 245301)
@@ -1,3 +1,10 @@
+2019-05-14 Ross Kirsling <[email protected]>
+
+ Unreviewed restoration of non-unified build.
+
+ * dfg/DFGMinifiedID.h:
+ * runtime/ObjectToStringAdaptiveStructureWatchpoint.cpp:
+
2019-05-14 Yusuke Suzuki <[email protected]>
[JSC] Shrink sizeof(UnlinkedFunctionExecutable) more
Modified: trunk/Source/_javascript_Core/dfg/DFGMinifiedID.h (245300 => 245301)
--- trunk/Source/_javascript_Core/dfg/DFGMinifiedID.h 2019-05-14 20:03:46 UTC (rev 245300)
+++ trunk/Source/_javascript_Core/dfg/DFGMinifiedID.h 2019-05-14 20:30:38 UTC (rev 245301)
@@ -27,6 +27,7 @@
#include "DFGCommon.h"
#include <wtf/HashMap.h>
+#include <wtf/Packed.h>
#include <wtf/PrintStream.h>
namespace JSC { namespace DFG {
Modified: trunk/Source/_javascript_Core/runtime/ObjectToStringAdaptiveStructureWatchpoint.cpp (245300 => 245301)
--- trunk/Source/_javascript_Core/runtime/ObjectToStringAdaptiveStructureWatchpoint.cpp 2019-05-14 20:03:46 UTC (rev 245300)
+++ trunk/Source/_javascript_Core/runtime/ObjectToStringAdaptiveStructureWatchpoint.cpp 2019-05-14 20:30:38 UTC (rev 245301)
@@ -26,6 +26,7 @@
#include "config.h"
#include "ObjectToStringAdaptiveStructureWatchpoint.h"
+#include "JSCellInlines.h"
#include "ObjectPropertyConditionSet.h"
#include "StructureRareData.h"
Modified: trunk/Source/WebCore/ChangeLog (245300 => 245301)
--- trunk/Source/WebCore/ChangeLog 2019-05-14 20:03:46 UTC (rev 245300)
+++ trunk/Source/WebCore/ChangeLog 2019-05-14 20:30:38 UTC (rev 245301)
@@ -1,3 +1,14 @@
+2019-05-14 Ross Kirsling <[email protected]>
+
+ Unreviewed restoration of non-unified build.
+
+ * Modules/cache/DOMCache.cpp:
+ * bindings/js/JSLazyEventListener.h:
+ * loader/NavigationScheduler.h:
+ * page/Quirks.cpp:
+ * page/Quirks.h:
+ * rendering/ClipRect.cpp:
+
2019-05-14 Zalan Bujtas <[email protected]>
Do not try to issue repaint while the render tree is being destroyed.
Modified: trunk/Source/WebCore/Modules/cache/DOMCache.cpp (245300 => 245301)
--- trunk/Source/WebCore/Modules/cache/DOMCache.cpp 2019-05-14 20:03:46 UTC (rev 245300)
+++ trunk/Source/WebCore/Modules/cache/DOMCache.cpp 2019-05-14 20:30:38 UTC (rev 245301)
@@ -33,9 +33,9 @@
#include "JSFetchResponse.h"
#include "ReadableStreamChunk.h"
#include "ScriptExecutionContext.h"
+#include <wtf/CompletionHandler.h>
#include <wtf/URL.h>
-
namespace WebCore {
using namespace WebCore::DOMCacheEngine;
Modified: trunk/Source/WebCore/bindings/js/JSLazyEventListener.h (245300 => 245301)
--- trunk/Source/WebCore/bindings/js/JSLazyEventListener.h 2019-05-14 20:03:46 UTC (rev 245300)
+++ trunk/Source/WebCore/bindings/js/JSLazyEventListener.h 2019-05-14 20:30:38 UTC (rev 245301)
@@ -21,6 +21,7 @@
#include "JSEventListener.h"
#include <wtf/Forward.h>
+#include <wtf/WeakPtr.h>
namespace WebCore {
Modified: trunk/Source/WebCore/loader/NavigationScheduler.h (245300 => 245301)
--- trunk/Source/WebCore/loader/NavigationScheduler.h 2019-05-14 20:03:46 UTC (rev 245300)
+++ trunk/Source/WebCore/loader/NavigationScheduler.h 2019-05-14 20:30:38 UTC (rev 245301)
@@ -32,6 +32,7 @@
#include "FrameLoaderTypes.h"
#include "Timer.h"
+#include <wtf/CompletionHandler.h>
#include <wtf/Forward.h>
namespace WebCore {
Modified: trunk/Source/WebCore/page/Quirks.cpp (245300 => 245301)
--- trunk/Source/WebCore/page/Quirks.cpp 2019-05-14 20:03:46 UTC (rev 245300)
+++ trunk/Source/WebCore/page/Quirks.cpp 2019-05-14 20:30:38 UTC (rev 245301)
@@ -30,6 +30,7 @@
#include "DocumentLoader.h"
#include "HTMLMetaElement.h"
#include "HTMLObjectElement.h"
+#include "LayoutUnit.h"
#include "Settings.h"
namespace WebCore {
Modified: trunk/Source/WebCore/page/Quirks.h (245300 => 245301)
--- trunk/Source/WebCore/page/Quirks.h 2019-05-14 20:03:46 UTC (rev 245300)
+++ trunk/Source/WebCore/page/Quirks.h 2019-05-14 20:30:38 UTC (rev 245301)
@@ -31,6 +31,7 @@
class Document;
class HTMLElement;
+class LayoutUnit;
class Quirks {
WTF_MAKE_NONCOPYABLE(Quirks); WTF_MAKE_FAST_ALLOCATED;
Modified: trunk/Source/WebCore/rendering/ClipRect.cpp (245300 => 245301)
--- trunk/Source/WebCore/rendering/ClipRect.cpp 2019-05-14 20:03:46 UTC (rev 245300)
+++ trunk/Source/WebCore/rendering/ClipRect.cpp 2019-05-14 20:30:38 UTC (rev 245301)
@@ -27,6 +27,7 @@
#include "ClipRect.h"
#include "HitTestLocation.h"
+#include <wtf/text/TextStream.h>
namespace WebCore {
Modified: trunk/Source/WebKit/ChangeLog (245300 => 245301)
--- trunk/Source/WebKit/ChangeLog 2019-05-14 20:03:46 UTC (rev 245300)
+++ trunk/Source/WebKit/ChangeLog 2019-05-14 20:30:38 UTC (rev 245301)
@@ -1,3 +1,12 @@
+2019-05-14 Ross Kirsling <[email protected]>
+
+ Unreviewed restoration of non-unified build.
+
+ * NetworkProcess/Classifier/ResourceLoadStatisticsDatabaseStore.cpp:
+ * NetworkProcess/Classifier/ResourceLoadStatisticsMemoryStore.cpp:
+ * NetworkProcess/cache/NetworkCacheFileSystem.cpp:
+ * UIProcess/WebProcessProxy.cpp:
+
2019-05-14 Youenn Fablet <[email protected]>
A service worker process should app nap when all its clients app nap
Modified: trunk/Source/WebKit/NetworkProcess/Classifier/ResourceLoadStatisticsDatabaseStore.cpp (245300 => 245301)
--- trunk/Source/WebKit/NetworkProcess/Classifier/ResourceLoadStatisticsDatabaseStore.cpp 2019-05-14 20:03:46 UTC (rev 245300)
+++ trunk/Source/WebKit/NetworkProcess/Classifier/ResourceLoadStatisticsDatabaseStore.cpp 2019-05-14 20:30:38 UTC (rev 245301)
@@ -43,6 +43,7 @@
#include <WebCore/ResourceLoadStatistics.h>
#include <WebCore/SQLiteDatabase.h>
#include <WebCore/SQLiteStatement.h>
+#include <WebCore/UserGestureIndicator.h>
#include <wtf/CallbackAggregator.h>
#include <wtf/DateMath.h>
#include <wtf/HashMap.h>
Modified: trunk/Source/WebKit/NetworkProcess/Classifier/ResourceLoadStatisticsMemoryStore.cpp (245300 => 245301)
--- trunk/Source/WebKit/NetworkProcess/Classifier/ResourceLoadStatisticsMemoryStore.cpp 2019-05-14 20:03:46 UTC (rev 245300)
+++ trunk/Source/WebKit/NetworkProcess/Classifier/ResourceLoadStatisticsMemoryStore.cpp 2019-05-14 20:30:38 UTC (rev 245301)
@@ -42,6 +42,7 @@
#include <WebCore/NetworkStorageSession.h>
#include <WebCore/ResourceLoadStatistics.h>
#include <WebCore/RuntimeEnabledFeatures.h>
+#include <WebCore/UserGestureIndicator.h>
#include <wtf/CallbackAggregator.h>
#include <wtf/DateMath.h>
#include <wtf/MathExtras.h>
Modified: trunk/Source/WebKit/NetworkProcess/cache/NetworkCacheFileSystem.cpp (245300 => 245301)
--- trunk/Source/WebKit/NetworkProcess/cache/NetworkCacheFileSystem.cpp 2019-05-14 20:03:46 UTC (rev 245300)
+++ trunk/Source/WebKit/NetworkProcess/cache/NetworkCacheFileSystem.cpp 2019-05-14 20:30:38 UTC (rev 245301)
@@ -36,6 +36,8 @@
#include <dirent.h>
#include <sys/stat.h>
#include <sys/time.h>
+#else
+#include <windows.h>
#endif
#if PLATFORM(IOS_FAMILY) && !PLATFORM(IOS_FAMILY_SIMULATOR)
Modified: trunk/Source/WebKit/UIProcess/WebProcessProxy.cpp (245300 => 245301)
--- trunk/Source/WebKit/UIProcess/WebProcessProxy.cpp 2019-05-14 20:03:46 UTC (rev 245300)
+++ trunk/Source/WebKit/UIProcess/WebProcessProxy.cpp 2019-05-14 20:30:38 UTC (rev 245301)
@@ -58,6 +58,7 @@
#include <WebCore/PublicSuffix.h>
#include <WebCore/SuddenTermination.h>
#include <stdio.h>
+#include <wtf/Algorithms.h>
#include <wtf/NeverDestroyed.h>
#include <wtf/RunLoop.h>
#include <wtf/URL.h>