Changeset 268764 in webkit
- Timestamp:
- Oct 20, 2020, 3:06:33 PM (6 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 5 edited
-
ChangeLog (modified) (1 diff)
-
bindings/js/JSEventCustom.cpp (modified) (1 diff)
-
display/DisplayTreeBuilder.h (modified) (1 diff)
-
layout/integration/LayoutIntegrationLineLayout.cpp (modified) (1 diff)
-
workers/WorkerOrWorkletScriptController.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r268762 r268764 1 2020-10-20 Don Olmstead <don.olmstead@sony.com> 2 3 Non-unified build fixes, late October 2020 edition 4 https://bugs.webkit.org/show_bug.cgi?id=217983 5 6 Unreviewed build fix. 7 8 No new tests. No change in behavior. 9 10 * bindings/js/JSEventCustom.cpp: 11 (WebCore::toJS): 12 * display/DisplayTreeBuilder.h: 13 * layout/integration/LayoutIntegrationLineLayout.cpp: 14 * workers/WorkerOrWorkletScriptController.h: 15 1 16 2020-10-20 Sihui Liu <sihui_liu@apple.com> 2 17 -
trunk/Source/WebCore/bindings/js/JSEventCustom.cpp
r268648 r268764 31 31 32 32 #include "JSDOMWrapperCache.h" 33 #include <JavaScriptCore/JSCJSValue.h> 33 34 34 35 namespace WebCore { 35 36 36 JS Value toJS(JSC::JSGlobalObject* lexicalGlobalObject, JSDOMGlobalObject* globalObject, Event& event)37 JSC::JSValue toJS(JSC::JSGlobalObject* lexicalGlobalObject, JSDOMGlobalObject* globalObject, Event& event) 37 38 { 38 39 return wrap(lexicalGlobalObject, globalObject, event); -
trunk/Source/WebCore/display/DisplayTreeBuilder.h
r268311 r268764 29 29 30 30 #include <wtf/IsoMalloc.h> 31 32 #if ENABLE(TREE_DEBUGGING) 33 #include <wtf/Forward.h> 34 #endif 31 35 32 36 namespace WebCore { -
trunk/Source/WebCore/layout/integration/LayoutIntegrationLineLayout.cpp
r268655 r268764 40 40 #include "LayoutIntegrationCoverage.h" 41 41 #include "LayoutIntegrationPagination.h" 42 #include "LayoutReplacedBox.h" 42 43 #include "LayoutTreeBuilder.h" 43 44 #include "PaintInfo.h" -
trunk/Source/WebCore/workers/WorkerOrWorkletScriptController.h
r268700 r268764 28 28 #include <JavaScriptCore/JSRunLoopTimer.h> 29 29 30 namespace JSC { 31 class JSGlobalObject; 32 } 33 30 34 namespace WebCore { 31 35
Note:
See TracChangeset
for help on using the changeset viewer.