Diff
Modified: releases/WebKitGTK/webkit-2.28/Source/_javascript_Core/ChangeLog (255804 => 255805)
--- releases/WebKitGTK/webkit-2.28/Source/_javascript_Core/ChangeLog 2020-02-05 10:51:00 UTC (rev 255804)
+++ releases/WebKitGTK/webkit-2.28/Source/_javascript_Core/ChangeLog 2020-02-05 10:51:07 UTC (rev 255805)
@@ -1,3 +1,12 @@
+2020-02-04 Adrian Perez de Castro <[email protected]>
+
+ Non-unified build fixes early February 2020 edition
+ https://bugs.webkit.org/show_bug.cgi?id=207227
+
+ Reviewed by Don Olmstead.
+
+ * bytecode/PolyProtoAccessChain.h: Add missing inclusions of StructureIDTable.h and VM.h
+
2020-02-04 Yusuke Suzuki <[email protected]>
[JSC] Use PackedRefPtr in UnlinkedCodeBlock
Modified: releases/WebKitGTK/webkit-2.28/Source/_javascript_Core/bytecode/PolyProtoAccessChain.h (255804 => 255805)
--- releases/WebKitGTK/webkit-2.28/Source/_javascript_Core/bytecode/PolyProtoAccessChain.h 2020-02-05 10:51:00 UTC (rev 255804)
+++ releases/WebKitGTK/webkit-2.28/Source/_javascript_Core/bytecode/PolyProtoAccessChain.h 2020-02-05 10:51:07 UTC (rev 255805)
@@ -25,6 +25,8 @@
#pragma once
+#include "StructureIDTable.h"
+#include "VM.h"
#include <wtf/Vector.h>
namespace JSC {
Modified: releases/WebKitGTK/webkit-2.28/Source/WTF/ChangeLog (255804 => 255805)
--- releases/WebKitGTK/webkit-2.28/Source/WTF/ChangeLog 2020-02-05 10:51:00 UTC (rev 255804)
+++ releases/WebKitGTK/webkit-2.28/Source/WTF/ChangeLog 2020-02-05 10:51:07 UTC (rev 255805)
@@ -1,3 +1,12 @@
+2020-02-04 Adrian Perez de Castro <[email protected]>
+
+ Non-unified build fixes early February 2020 edition
+ https://bugs.webkit.org/show_bug.cgi?id=207227
+
+ Reviewed by Don Olmstead.
+
+ * wtf/SingleRootGraph.h: Add missing inclusion of wtf/StringPrintStream.h
+
2020-02-04 Yusuke Suzuki <[email protected]>
[JSC] Introduce UnlinkedCodeBlockGenerator and reduce sizeof(UnlinkedCodeBlock)
Modified: releases/WebKitGTK/webkit-2.28/Source/WTF/wtf/SingleRootGraph.h (255804 => 255805)
--- releases/WebKitGTK/webkit-2.28/Source/WTF/wtf/SingleRootGraph.h 2020-02-05 10:51:00 UTC (rev 255804)
+++ releases/WebKitGTK/webkit-2.28/Source/WTF/wtf/SingleRootGraph.h 2020-02-05 10:51:07 UTC (rev 255805)
@@ -29,6 +29,7 @@
#include <wtf/GraphNodeWorklist.h>
#include <wtf/Noncopyable.h>
#include <wtf/StdLibExtras.h>
+#include <wtf/StringPrintStream.h>
namespace WTF {
Modified: releases/WebKitGTK/webkit-2.28/Source/WebCore/ChangeLog (255804 => 255805)
--- releases/WebKitGTK/webkit-2.28/Source/WebCore/ChangeLog 2020-02-05 10:51:00 UTC (rev 255804)
+++ releases/WebKitGTK/webkit-2.28/Source/WebCore/ChangeLog 2020-02-05 10:51:07 UTC (rev 255805)
@@ -1,3 +1,17 @@
+2020-02-04 Adrian Perez de Castro <[email protected]>
+
+ Non-unified build fixes early February 2020 edition
+ https://bugs.webkit.org/show_bug.cgi?id=207227
+
+ Reviewed by Don Olmstead.
+
+ No new tests needed.
+
+ * accessibility/atk/AccessibilityObjectAtk.cpp: Add missing inclusion of WebKitAccessible.h
+ * inspector/agents/InspectorAnimationAgent.cpp: Add issing inclusions of JSExecState.h and
+ _javascript_Core/InjectedScriptManager.h
+ * style/MatchedDeclarationsCache.cpp: Add missing inclusion of FontCascade.h
+
2020-02-04 Rob Buis <[email protected]>
Tighten up stylesheet loading
Modified: releases/WebKitGTK/webkit-2.28/Source/WebCore/accessibility/atk/AccessibilityObjectAtk.cpp (255804 => 255805)
--- releases/WebKitGTK/webkit-2.28/Source/WebCore/accessibility/atk/AccessibilityObjectAtk.cpp 2020-02-05 10:51:00 UTC (rev 255804)
+++ releases/WebKitGTK/webkit-2.28/Source/WebCore/accessibility/atk/AccessibilityObjectAtk.cpp 2020-02-05 10:51:07 UTC (rev 255805)
@@ -29,6 +29,7 @@
#include "RenderTableCell.h"
#include "RenderText.h"
#include "TextControlInnerElements.h"
+#include "WebKitAccessible.h"
#include <glib-object.h>
#if ENABLE(ACCESSIBILITY)
Modified: releases/WebKitGTK/webkit-2.28/Source/WebCore/inspector/agents/InspectorAnimationAgent.cpp (255804 => 255805)
--- releases/WebKitGTK/webkit-2.28/Source/WebCore/inspector/agents/InspectorAnimationAgent.cpp 2020-02-05 10:51:00 UTC (rev 255804)
+++ releases/WebKitGTK/webkit-2.28/Source/WebCore/inspector/agents/InspectorAnimationAgent.cpp 2020-02-05 10:51:07 UTC (rev 255805)
@@ -40,6 +40,7 @@
#include "Frame.h"
#include "InspectorDOMAgent.h"
#include "InstrumentingAgents.h"
+#include "JSExecState.h"
#include "JSWebAnimation.h"
#include "KeyframeEffect.h"
#include "KeyframeList.h"
@@ -49,6 +50,7 @@
#include "TimingFunction.h"
#include "WebAnimation.h"
#include <_javascript_Core/IdentifiersFactory.h>
+#include <_javascript_Core/InjectedScriptManager.h>
#include <_javascript_Core/InspectorEnvironment.h>
#include <_javascript_Core/ScriptCallStackFactory.h>
#include <wtf/HashMap.h>
Modified: releases/WebKitGTK/webkit-2.28/Source/WebCore/style/MatchedDeclarationsCache.cpp (255804 => 255805)
--- releases/WebKitGTK/webkit-2.28/Source/WebCore/style/MatchedDeclarationsCache.cpp 2020-02-05 10:51:00 UTC (rev 255804)
+++ releases/WebKitGTK/webkit-2.28/Source/WebCore/style/MatchedDeclarationsCache.cpp 2020-02-05 10:51:07 UTC (rev 255805)
@@ -31,6 +31,7 @@
#include "MatchedDeclarationsCache.h"
#include "CSSFontSelector.h"
+#include "FontCascade.h"
#include <wtf/text/StringHash.h>
namespace WebCore {