⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 268764 in webkit


Ignore:
Timestamp:
Oct 20, 2020, 3:06:33 PM (6 years ago)
Author:
don.olmstead@sony.com
Message:

Non-unified build fixes, late October 2020 edition
https://bugs.webkit.org/show_bug.cgi?id=217983

Unreviewed build fix.

No new tests. No change in behavior.

  • bindings/js/JSEventCustom.cpp:

(WebCore::toJS):

  • display/DisplayTreeBuilder.h:
  • layout/integration/LayoutIntegrationLineLayout.cpp:
  • workers/WorkerOrWorkletScriptController.h:
Location:
trunk/Source/WebCore
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r268762 r268764  
     12020-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
    1162020-10-20  Sihui Liu  <sihui_liu@apple.com>
    217
  • trunk/Source/WebCore/bindings/js/JSEventCustom.cpp

    r268648 r268764  
    3131
    3232#include "JSDOMWrapperCache.h"
     33#include <JavaScriptCore/JSCJSValue.h>
    3334
    3435namespace WebCore {
    3536
    36 JSValue toJS(JSC::JSGlobalObject* lexicalGlobalObject, JSDOMGlobalObject* globalObject, Event& event)
     37JSC::JSValue toJS(JSC::JSGlobalObject* lexicalGlobalObject, JSDOMGlobalObject* globalObject, Event& event)
    3738{
    3839    return wrap(lexicalGlobalObject, globalObject, event);
  • trunk/Source/WebCore/display/DisplayTreeBuilder.h

    r268311 r268764  
    2929
    3030#include <wtf/IsoMalloc.h>
     31
     32#if ENABLE(TREE_DEBUGGING)
     33#include <wtf/Forward.h>
     34#endif
    3135
    3236namespace WebCore {
  • trunk/Source/WebCore/layout/integration/LayoutIntegrationLineLayout.cpp

    r268655 r268764  
    4040#include "LayoutIntegrationCoverage.h"
    4141#include "LayoutIntegrationPagination.h"
     42#include "LayoutReplacedBox.h"
    4243#include "LayoutTreeBuilder.h"
    4344#include "PaintInfo.h"
  • trunk/Source/WebCore/workers/WorkerOrWorkletScriptController.h

    r268700 r268764  
    2828#include <JavaScriptCore/JSRunLoopTimer.h>
    2929
     30namespace JSC {
     31class JSGlobalObject;
     32}
     33
    3034namespace WebCore {
    3135
Note: See TracChangeset for help on using the changeset viewer.