Changeset 249022 in webkit


Ignore:
Timestamp:
Aug 22, 2019 11:54:34 AM (5 years ago)
Author:
Adrian Perez de Castro
Message:

[GTK][WPE] Fixes for non-unified builds after r248547
https://bugs.webkit.org/show_bug.cgi?id=201044

Reviewed by Philippe Normand.

Source/JavaScriptCore:

  • b3/B3ReduceLoopStrength.cpp: Add missing inclusions of B3BasicBlockInlines.h,

B3InsertionSet.h, and B3NaturalLoops.h

  • wasm/WasmOMGForOSREntryPlan.h: Include WasmCallee.h instead of forward-declaring

BBQCallee in order to avoid build failure due to incomplete definition on template
expansions.

Source/WebCore:

  • platform/audio/AudioResamplerKernel.h: Add missing inclusion of wtf/Noncopyable.h

Source/WebKit:

  • NetworkProcess/WebStorage/LocalStorageDatabaseTracker.cpp: Add missing inclusion of

the wtf/CrossThreadCopier.h header.

  • WebProcess/WebStorage/StorageNamespaceImpl.h: Add missing inclusion of the

WebCore/PageIdentifier.h header.

Location:
trunk/Source
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r249020 r249022  
     12019-08-22  Adrian Perez de Castro  <aperez@igalia.com>
     2
     3        [GTK][WPE] Fixes for non-unified builds after r248547
     4        https://bugs.webkit.org/show_bug.cgi?id=201044
     5
     6        Reviewed by Philippe Normand.
     7
     8        * b3/B3ReduceLoopStrength.cpp: Add missing inclusions of B3BasicBlockInlines.h,
     9        B3InsertionSet.h, and B3NaturalLoops.h
     10        * wasm/WasmOMGForOSREntryPlan.h: Include WasmCallee.h instead of forward-declaring
     11        BBQCallee in order to avoid build failure due to incomplete definition on template
     12        expansions.
     13
    1142019-08-22  Justin Michaud  <justin_michaud@apple.com>
    215
  • trunk/Source/JavaScriptCore/b3/B3ReduceLoopStrength.cpp

    r248938 r249022  
    2929#if ENABLE(B3_JIT)
    3030
     31#include "B3BasicBlockInlines.h"
    3132#include "B3BlockInsertionSet.h"
    3233#include "B3ConstPtrValue.h"
    3334#include "B3EnsureLoopPreHeaders.h"
     35#include "B3InsertionSet.h"
     36#include "B3NaturalLoops.h"
    3437#include "B3PhaseScope.h"
    3538#include "B3ProcedureInlines.h"
  • trunk/Source/JavaScriptCore/wasm/WasmOMGForOSREntryPlan.h

    r248878 r249022  
    2828#if ENABLE(WEBASSEMBLY)
    2929
     30#include "WasmCallee.h"
    3031#include "WasmContext.h"
    3132#include "WasmModule.h"
     
    3536namespace JSC {
    3637
    37 class BBQCallee;
    3838class CallLinkInfo;
    3939
  • trunk/Source/WebCore/ChangeLog

    r249018 r249022  
     12019-08-22  Adrian Perez de Castro  <aperez@igalia.com>
     2
     3        [GTK][WPE] Fixes for non-unified builds after r248547
     4        https://bugs.webkit.org/show_bug.cgi?id=201044
     5
     6        Reviewed by Philippe Normand.
     7
     8        * platform/audio/AudioResamplerKernel.h: Add missing inclusion of wtf/Noncopyable.h
     9
    1102019-08-22  Youenn Fablet  <youenn@apple.com>
    211
  • trunk/Source/WebCore/platform/audio/AudioResamplerKernel.h

    r248762 r249022  
    2727
    2828#include "AudioArray.h"
     29
     30#include <wtf/Noncopyable.h>
    2931
    3032namespace WebCore {
  • trunk/Source/WebKit/ChangeLog

    r249019 r249022  
     12019-08-22  Adrian Perez de Castro  <aperez@igalia.com>
     2
     3        [GTK][WPE] Fixes for non-unified builds after r248547
     4        https://bugs.webkit.org/show_bug.cgi?id=201044
     5
     6        Reviewed by Philippe Normand.
     7
     8        * NetworkProcess/WebStorage/LocalStorageDatabaseTracker.cpp: Add missing inclusion of
     9        the wtf/CrossThreadCopier.h header.
     10        * WebProcess/WebStorage/StorageNamespaceImpl.h: Add missing inclusion of the
     11        WebCore/PageIdentifier.h header.
     12
    1132019-08-22  Alex Christensen  <achristensen@webkit.org>
    214
  • trunk/Source/WebKit/NetworkProcess/WebStorage/LocalStorageDatabaseTracker.cpp

    r248808 r249022  
    3131#include <WebCore/SQLiteStatement.h>
    3232#include <WebCore/TextEncoding.h>
     33#include <wtf/CrossThreadCopier.h>
    3334#include <wtf/FileSystem.h>
    3435#include <wtf/MainThread.h>
  • trunk/Source/WebKit/WebProcess/WebStorage/StorageNamespaceImpl.h

    r248901 r249022  
    2727
    2828#include "StorageNamespaceIdentifier.h"
     29#include <WebCore/PageIdentifier.h>
    2930#include <WebCore/SecurityOriginData.h>
    3031#include <WebCore/SecurityOriginHash.h>
Note: See TracChangeset for help on using the changeset viewer.