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

Changeset 286946 in webkit


Ignore:
Timestamp:
Dec 13, 2021, 5:42:48 AM (5 years ago)
Author:
Adrian Perez de Castro
Message:

Unreviewed build fix after r286936

Source/JavaScriptCore:

  • wasm/WasmOSREntryData.h: Replace wrong inclusion of wtf/Vector.h (unused) with the correct

wtf/FixedVector.h one.

  • wasm/WasmTierUpCount.h: Add missing WasmOSREntryData.h inclusion.

Source/WebKit:

No new tests needed.

  • NetworkProcess/storage/OriginStorageManager.cpp: Add missing inclusion of

MemoryStorageArea.h, which broke non-unified builds.

  • NetworkProcess/storage/SQLiteStorageArea.cpp: Add missing inclusion of Logging.h, broke

the build in some configurations.

  • NetworkProcess/storage/SessionStorageManager.h: Add missing inclusion of Connection.h, and

add missing forward declaration for WebCore::ClientOrigin, which broke the build for
non-Apple ports.

Location:
trunk/Source
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r286941 r286946  
     12021-12-13  Adrian Perez de Castro  <aperez@igalia.com>
     2
     3        Unreviewed build fix after r286936
     4
     5        * wasm/WasmOSREntryData.h: Replace wrong inclusion of wtf/Vector.h (unused) with the correct
     6        wtf/FixedVector.h one.
     7        * wasm/WasmTierUpCount.h: Add missing WasmOSREntryData.h inclusion.
     8
    192021-12-13  Zan Dobersek  <zdobersek@igalia.com>
    210
  • trunk/Source/JavaScriptCore/wasm/WasmOSREntryData.h

    r286930 r286946  
    3030#include "B3Type.h"
    3131#include "B3ValueRep.h"
    32 #include <wtf/Vector.h>
     32#include <wtf/FixedVector.h>
    3333
    3434namespace JSC { namespace Wasm {
  • trunk/Source/JavaScriptCore/wasm/WasmTierUpCount.h

    r286930 r286946  
    3131#include "ExecutionCounter.h"
    3232#include "Options.h"
     33#include "WasmOSREntryData.h"
    3334#include <wtf/Atomics.h>
    3435#include <wtf/SegmentedVector.h>
  • trunk/Source/WebKit/ChangeLog

    r286944 r286946  
     12021-12-13  Adrian Perez de Castro  <aperez@igalia.com>
     2
     3        Unreviewed build fix after r286936
     4
     5        No new tests needed.
     6
     7        * NetworkProcess/storage/OriginStorageManager.cpp: Add missing inclusion of
     8        MemoryStorageArea.h, which broke non-unified builds.
     9        * NetworkProcess/storage/SQLiteStorageArea.cpp: Add missing inclusion of Logging.h, broke
     10        the build in some configurations.
     11        * NetworkProcess/storage/SessionStorageManager.h: Add missing inclusion of Connection.h, and
     12        add missing forward declaration for WebCore::ClientOrigin, which broke the build for
     13        non-Apple ports.
     14
    1152021-12-13  Youenn Fablet  <youenn@apple.com>
    216
  • trunk/Source/WebKit/NetworkProcess/storage/OriginStorageManager.cpp

    r286936 r286946  
    3030#include "FileSystemStorageManager.h"
    3131#include "LocalStorageManager.h"
     32#include "MemoryStorageArea.h"
    3233#include "SessionStorageManager.h"
    3334#include "StorageAreaRegistry.h"
  • trunk/Source/WebKit/NetworkProcess/storage/SQLiteStorageArea.cpp

    r286936 r286946  
    2727#include "SQLiteStorageArea.h"
    2828
     29#include "Logging.h"
    2930#include <WebCore/SQLiteFileSystem.h>
    3031#include <WebCore/SQLiteStatement.h>
  • trunk/Source/WebKit/NetworkProcess/storage/SessionStorageManager.h

    r286936 r286946  
    2626#pragma once
    2727
     28#include "Connection.h"
    2829#include "StorageAreaIdentifier.h"
    2930#include "StorageNamespaceIdentifier.h"
     31
     32namespace WebCore {
     33class ClientOrigin;
     34} // namespace WebCore
    3035
    3136namespace WebKit {
Note: See TracChangeset for help on using the changeset viewer.