Title: [257537] trunk/Source
- Revision
- 257537
- Author
- [email protected]
- Date
- 2020-02-26 17:08:46 -0800 (Wed, 26 Feb 2020)
Log Message
Unreviewed unified source builds fix.
Source/WebCore:
> layout\FormattingContextGeometry.cpp(564): error C2027: use of undefined type 'WebCore::Layout::ReplacedBox
> Modules\websockets\WebSocket.cpp(335): error C2027: use of undefined type 'WebCore::WorkerThread'
> layout\integration\LayoutIntegrationBoxTree.cpp(63): error C2039: 'InlineTextBox': is not a member of 'WebCore::Layout'
> workers\service\context\ServiceWorkerFetch.cpp(143): error C2027: use of undefined type 'WebCore::ServiceWorkerThread'
* Modules/websockets/WebSocket.cpp:
* layout/FormattingContextGeometry.cpp:
* layout/inlineformatting/InlineFormattingContextGeometry.cpp:
* layout/integration/LayoutIntegrationBoxTree.cpp:
* workers/service/context/ServiceWorkerFetch.cpp:
Source/WebKit:
> NetworkProcess\WebStorage\LocalStorageDatabase.cpp(59): error C2653: 'RunLoop': is not a class or namespace name
* NetworkProcess/WebStorage/LocalStorageDatabase.cpp:
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (257536 => 257537)
--- trunk/Source/WebCore/ChangeLog 2020-02-27 01:01:37 UTC (rev 257536)
+++ trunk/Source/WebCore/ChangeLog 2020-02-27 01:08:46 UTC (rev 257537)
@@ -1,3 +1,18 @@
+2020-02-26 Fujii Hironori <[email protected]>
+
+ Unreviewed unified source builds fix.
+
+ > layout\FormattingContextGeometry.cpp(564): error C2027: use of undefined type 'WebCore::Layout::ReplacedBox
+ > Modules\websockets\WebSocket.cpp(335): error C2027: use of undefined type 'WebCore::WorkerThread'
+ > layout\integration\LayoutIntegrationBoxTree.cpp(63): error C2039: 'InlineTextBox': is not a member of 'WebCore::Layout'
+ > workers\service\context\ServiceWorkerFetch.cpp(143): error C2027: use of undefined type 'WebCore::ServiceWorkerThread'
+
+ * Modules/websockets/WebSocket.cpp:
+ * layout/FormattingContextGeometry.cpp:
+ * layout/inlineformatting/InlineFormattingContextGeometry.cpp:
+ * layout/integration/LayoutIntegrationBoxTree.cpp:
+ * workers/service/context/ServiceWorkerFetch.cpp:
+
2020-02-26 Jack Lee <[email protected]>
Nullptr crash in WebCore::canHaveChildrenForEditing via CompositeEditCommand::insertNode
Modified: trunk/Source/WebCore/Modules/websockets/WebSocket.cpp (257536 => 257537)
--- trunk/Source/WebCore/Modules/websockets/WebSocket.cpp 2020-02-27 01:01:37 UTC (rev 257536)
+++ trunk/Source/WebCore/Modules/websockets/WebSocket.cpp 2020-02-27 01:08:46 UTC (rev 257537)
@@ -54,6 +54,7 @@
#include "WebSocketChannel.h"
#include "WorkerGlobalScope.h"
#include "WorkerLoaderProxy.h"
+#include "WorkerThread.h"
#include <_javascript_Core/ArrayBuffer.h>
#include <_javascript_Core/ArrayBufferView.h>
#include <_javascript_Core/ScriptCallStack.h>
Modified: trunk/Source/WebCore/layout/FormattingContextGeometry.cpp (257536 => 257537)
--- trunk/Source/WebCore/layout/FormattingContextGeometry.cpp 2020-02-27 01:01:37 UTC (rev 257536)
+++ trunk/Source/WebCore/layout/FormattingContextGeometry.cpp 2020-02-27 01:08:46 UTC (rev 257537)
@@ -31,6 +31,7 @@
#include "FloatingState.h"
#include "InlineFormattingState.h"
#include "LayoutContext.h"
+#include "LayoutReplacedBox.h"
#include "Logging.h"
#include "TableFormattingState.h"
Modified: trunk/Source/WebCore/layout/inlineformatting/InlineFormattingContextGeometry.cpp (257536 => 257537)
--- trunk/Source/WebCore/layout/inlineformatting/InlineFormattingContextGeometry.cpp 2020-02-27 01:01:37 UTC (rev 257536)
+++ trunk/Source/WebCore/layout/inlineformatting/InlineFormattingContextGeometry.cpp 2020-02-27 01:08:46 UTC (rev 257537)
@@ -31,6 +31,7 @@
#include "FormattingContext.h"
#include "LayoutBox.h"
#include "LayoutContainerBox.h"
+#include "LayoutReplacedBox.h"
#include "LengthFunctions.h"
namespace WebCore {
Modified: trunk/Source/WebCore/workers/service/context/ServiceWorkerFetch.cpp (257536 => 257537)
--- trunk/Source/WebCore/workers/service/context/ServiceWorkerFetch.cpp 2020-02-27 01:01:37 UTC (rev 257536)
+++ trunk/Source/WebCore/workers/service/context/ServiceWorkerFetch.cpp 2020-02-27 01:08:46 UTC (rev 257537)
@@ -39,6 +39,7 @@
#include "ServiceWorker.h"
#include "ServiceWorkerClientIdentifier.h"
#include "ServiceWorkerGlobalScope.h"
+#include "ServiceWorkerThread.h"
#include "WorkerGlobalScope.h"
namespace WebCore {
Modified: trunk/Source/WebKit/ChangeLog (257536 => 257537)
--- trunk/Source/WebKit/ChangeLog 2020-02-27 01:01:37 UTC (rev 257536)
+++ trunk/Source/WebKit/ChangeLog 2020-02-27 01:08:46 UTC (rev 257537)
@@ -1,3 +1,11 @@
+2020-02-26 Fujii Hironori <[email protected]>
+
+ Unreviewed unified source builds fix.
+
+ > NetworkProcess\WebStorage\LocalStorageDatabase.cpp(59): error C2653: 'RunLoop': is not a class or namespace name
+
+ * NetworkProcess/WebStorage/LocalStorageDatabase.cpp:
+
2020-02-26 Jacob Uphoff <[email protected]>
Unreviewed, rolling out r257508.
Modified: trunk/Source/WebKit/NetworkProcess/WebStorage/LocalStorageDatabase.cpp (257536 => 257537)
--- trunk/Source/WebKit/NetworkProcess/WebStorage/LocalStorageDatabase.cpp 2020-02-27 01:01:37 UTC (rev 257536)
+++ trunk/Source/WebKit/NetworkProcess/WebStorage/LocalStorageDatabase.cpp 2020-02-27 01:08:46 UTC (rev 257537)
@@ -34,6 +34,7 @@
#include <WebCore/SuddenTermination.h>
#include <wtf/FileSystem.h>
#include <wtf/RefPtr.h>
+#include <wtf/RunLoop.h>
#include <wtf/WorkQueue.h>
#include <wtf/text/StringHash.h>
#include <wtf/text/WTFString.h>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes