Changeset 265039 in webkit


Ignore:
Timestamp:
Jul 29, 2020 6:38:51 AM (4 years ago)
Author:
Adrian Perez de Castro
Message:

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

Unreviewed build fix.

No new tests needed.

  • Modules/webaudio/WebKitOscillatorNode.h: Add missing WebKitAudioContext.h header to make

the constructor of WebKitOscillatorNode that WebKitAudioContext inherits from the base
context, otherwise the compiler does not know which base class constructor to invoke.

  • bindings/js/JSDOMConvertDate.h: Add missing JSGlobalObject.h header.
  • bindings/js/ReadableStreamDefaultController.cpp: Sprinkle missing JSC:: namespace

prefixes where needed.
(WebCore::invokeReadableStreamDefaultControllerFunction):
(WebCore::ReadableStreamDefaultController::close):
(WebCore::ReadableStreamDefaultController::error):
(WebCore::ReadableStreamDefaultController::enqueue):

  • editing/SpellChecker.cpp: Add missing inclusion of TextIterator.h.
  • editing/SpellChecker.h: Add missing inclusion of SimpleRange.h.
  • editing/TextCheckingHelper.h: Forward declare Frame and VisibleSelection.
  • editing/TextIterator.cpp: Add missing inclusion of Range.h.
  • workers/WorkerScriptLoader.h: Add missing inclusion of CertificateInfo.h.
Location:
trunk/Source/WebCore
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r265038 r265039  
     12020-07-29  Adrian Perez de Castro  <aperez@igalia.com>
     2
     3        Non-unified build fixes, late July 2020 edition
     4        https://bugs.webkit.org/show_bug.cgi?id=214918
     5
     6        Unreviewed build fix.
     7
     8        No new tests needed.
     9
     10        * Modules/webaudio/WebKitOscillatorNode.h: Add missing WebKitAudioContext.h header to make
     11        the constructor of WebKitOscillatorNode that WebKitAudioContext inherits from the base
     12        context, otherwise the compiler does not know which base class constructor to invoke.
     13        * bindings/js/JSDOMConvertDate.h: Add missing JSGlobalObject.h header.
     14        * bindings/js/ReadableStreamDefaultController.cpp: Sprinkle missing JSC:: namespace
     15        prefixes where needed.
     16        (WebCore::invokeReadableStreamDefaultControllerFunction):
     17        (WebCore::ReadableStreamDefaultController::close):
     18        (WebCore::ReadableStreamDefaultController::error):
     19        (WebCore::ReadableStreamDefaultController::enqueue):
     20        * editing/SpellChecker.cpp: Add missing inclusion of TextIterator.h.
     21        * editing/SpellChecker.h: Add missing inclusion of SimpleRange.h.
     22        * editing/TextCheckingHelper.h: Forward declare Frame and VisibleSelection.
     23        * editing/TextIterator.cpp: Add missing inclusion of Range.h.
     24        * workers/WorkerScriptLoader.h: Add missing inclusion of CertificateInfo.h.
     25
    1262020-07-29  Commit Queue  <commit-queue@webkit.org>
    227
  • trunk/Source/WebCore/Modules/webaudio/WebKitOscillatorNode.h

    r265028 r265039  
    2727
    2828#include "OscillatorNode.h"
     29#include "WebKitAudioContext.h"
    2930
    3031namespace WebCore {
  • trunk/Source/WebCore/bindings/js/JSDOMConvertDate.h

    r264988 r265039  
    2828#include "IDLTypes.h"
    2929#include "JSDOMConvertBase.h"
     30#include <JavaScriptCore/JSGlobalObject.h>
    3031
    3132namespace WebCore {
  • trunk/Source/WebCore/bindings/js/ReadableStreamDefaultController.cpp

    r264967 r265039  
    4040namespace WebCore {
    4141
    42 static bool invokeReadableStreamDefaultControllerFunction(JSC::JSGlobalObject& lexicalGlobalObject, const Identifier& identifier, const MarkedArgumentBuffer& arguments)
     42static bool invokeReadableStreamDefaultControllerFunction(JSC::JSGlobalObject& lexicalGlobalObject, const JSC::Identifier& identifier, const JSC::MarkedArgumentBuffer& arguments)
    4343{
    4444    JSC::VM& vm = lexicalGlobalObject.vm();
     
    5757void ReadableStreamDefaultController::close()
    5858{
    59     MarkedArgumentBuffer arguments;
     59    JSC::MarkedArgumentBuffer arguments;
    6060    arguments.append(&jsController());
    6161
     
    8080    }
    8181
    82     MarkedArgumentBuffer arguments;
     82    JSC::MarkedArgumentBuffer arguments;
    8383    arguments.append(&jsController());
    8484    arguments.append(value);
     
    110110    }
    111111
    112     MarkedArgumentBuffer arguments;
     112    JSC::MarkedArgumentBuffer arguments;
    113113    arguments.append(&jsController());
    114114    arguments.append(value);
  • trunk/Source/WebCore/editing/SpellChecker.cpp

    r264905 r265039  
    3939#include "Settings.h"
    4040#include "TextCheckerClient.h"
     41#include "TextIterator.h"
    4142
    4243namespace WebCore {
  • trunk/Source/WebCore/editing/SpellChecker.h

    r264905 r265039  
    2828
    2929#include "Element.h"
     30#include "SimpleRange.h"
    3031#include "TextChecking.h"
    3132#include "Timer.h"
  • trunk/Source/WebCore/editing/TextCheckingHelper.h

    r264905 r265039  
    2828
    2929class EditorClient;
     30class Frame;
    3031class Position;
    3132class TextCheckerClient;
     33class VisibleSelection;
    3234
    3335struct TextCheckingResult;
  • trunk/Source/WebCore/editing/TextIterator.cpp

    r264690 r265039  
    4747#include "InlineTextBox.h"
    4848#include "NodeTraversal.h"
     49#include "Range.h"
    4950#include "RenderImage.h"
    5051#include "RenderIterator.h"
  • trunk/Source/WebCore/workers/WorkerScriptLoader.h

    r264724 r265039  
    2727#pragma once
    2828
     29#include "CertificateInfo.h"
    2930#include "ContentSecurityPolicyResponseHeaders.h"
    3031#include "FetchOptions.h"
Note: See TracChangeset for help on using the changeset viewer.