Skip to content

Commit

Permalink
Non-unified build fixes, late September 2022 edition
Browse files Browse the repository at this point in the history
Unreviewed non-unified build fixes.

* Source/WebCore/Modules/screen-wake-lock/WakeLock.h: Add missing
  wtf/Ref.h header inclusion.
* Source/WebCore/css/CSSFunctionValue.cpp: Add missing
  wtf/text/WTFString.h header inclusion.
* Source/WebCore/css/CSSGridLineNamesValue.cpp: Ditto.
* Source/WebCore/css/CSSGridTemplateAreasValue.cpp: Add missing
  wtf/text/StringHash.h header inclusion.
* Source/WebCore/css/CSSSubgridValue.cpp: Add missing
  wtf/text/WTFString.h header inclusion.
* Source/WebCore/css/CSSUnicodeRangeValue.h: Include
  unicode/umachine.h in order to bring the definition of UChar32 and
  related types into scope.
* Source/WebCore/css/query/GenericMediaQueryTypes.h: Add missing
  wtf/text/AtomString.h header inclusion.
* Source/WebCore/css/typedom/CSSNumericValue.cpp: Add missing
  wtf/FixedVector.h header inclusion.
* Source/WebCore/css/typedom/numeric/CSSMathMin.cpp: Ditto.
* Source/WebCore/css/typedom/numeric/CSSNumericArray.cpp: Ditto, and
  move header inclusion inside feature guard.
* Source/WebCore/layout/formattingContexts/inline/display/InlineDisplayContentBuilder.cpp:
  Add missing LayoutReplacedBox.h header inclusion.
* Source/WebCore/workers/WorkerNotificationClient.cpp: Add a number of
  missing header inclusions and move header inclusions inside feature
  guard.

Canonical link: https://commits.webkit.org/254900@main
  • Loading branch information
aperezdc committed Sep 27, 2022
1 parent 523acc3 commit eb5c6c2
Show file tree
Hide file tree
Showing 12 changed files with 20 additions and 5 deletions.
1 change: 1 addition & 0 deletions Source/WebCore/Modules/screen-wake-lock/WakeLock.h
Expand Up @@ -26,6 +26,7 @@
#pragma once

#include "WakeLockType.h"
#include <wtf/Ref.h>
#include <wtf/RefCounted.h>

namespace WebCore {
Expand Down
1 change: 1 addition & 0 deletions Source/WebCore/css/CSSFunctionValue.cpp
Expand Up @@ -25,6 +25,7 @@

#include "config.h"
#include "CSSFunctionValue.h"
#include <wtf/text/WTFString.h>

namespace WebCore {

Expand Down
1 change: 1 addition & 0 deletions Source/WebCore/css/CSSGridLineNamesValue.cpp
Expand Up @@ -30,6 +30,7 @@

#include "config.h"
#include "CSSGridLineNamesValue.h"
#include <wtf/text/WTFString.h>

namespace WebCore {

Expand Down
1 change: 1 addition & 0 deletions Source/WebCore/css/CSSGridTemplateAreasValue.cpp
Expand Up @@ -34,6 +34,7 @@

#include "GridArea.h"
#include <wtf/text/StringBuilder.h>
#include <wtf/text/StringHash.h>

namespace WebCore {

Expand Down
1 change: 1 addition & 0 deletions Source/WebCore/css/CSSSubgridValue.cpp
Expand Up @@ -30,6 +30,7 @@

#include "config.h"
#include "CSSSubgridValue.h"
#include <wtf/text/WTFString.h>

namespace WebCore {

Expand Down
1 change: 1 addition & 0 deletions Source/WebCore/css/CSSUnicodeRangeValue.h
Expand Up @@ -26,6 +26,7 @@
#pragma once

#include "CSSValue.h"
#include <unicode/umachine.h>

namespace WebCore {

Expand Down
1 change: 1 addition & 0 deletions Source/WebCore/css/query/GenericMediaQueryTypes.h
Expand Up @@ -25,6 +25,7 @@
#pragma once

#include "CSSValue.h"
#include <wtf/text/AtomString.h>

namespace WebCore::MQ {

Expand Down
1 change: 1 addition & 0 deletions Source/WebCore/css/typedom/CSSNumericValue.cpp
Expand Up @@ -44,6 +44,7 @@
#include "CSSUnitValue.h"
#include "ExceptionOr.h"
#include <wtf/Algorithms.h>
#include <wtf/FixedVector.h>
#include <wtf/IsoMallocInlines.h>

namespace WebCore {
Expand Down
1 change: 1 addition & 0 deletions Source/WebCore/css/typedom/numeric/CSSMathMin.cpp
Expand Up @@ -30,6 +30,7 @@

#include "CSSNumericArray.h"
#include "ExceptionOr.h"
#include <wtf/FixedVector.h>
#include <wtf/IsoMallocInlines.h>
#include <wtf/text/StringBuilder.h>

Expand Down
8 changes: 4 additions & 4 deletions Source/WebCore/css/typedom/numeric/CSSNumericArray.cpp
Expand Up @@ -26,13 +26,13 @@
#include "config.h"
#include "CSSNumericArray.h"

#include "ExceptionOr.h"
#include <wtf/text/StringBuilder.h>
#include <wtf/text/WTFString.h>

#if ENABLE(CSS_TYPED_OM)

#include "ExceptionOr.h"
#include <wtf/FixedVector.h>
#include <wtf/IsoMallocInlines.h>
#include <wtf/text/StringBuilder.h>
#include <wtf/text/WTFString.h>

namespace WebCore {

Expand Down
Expand Up @@ -31,6 +31,7 @@
#include "InlineTextBoxStyle.h"
#include "LayoutBoxGeometry.h"
#include "LayoutInitialContainingBlock.h"
#include "LayoutReplacedBox.h"
#include "TextUtil.h"
#include <wtf/ListHashSet.h>
#include <wtf/Range.h>
Expand Down
7 changes: 6 additions & 1 deletion Source/WebCore/workers/WorkerNotificationClient.cpp
Expand Up @@ -24,10 +24,15 @@
*/

#include "config.h"
#include "WorkerNotificationClient.h"

#if ENABLE(NOTIFICATIONS)
#include "WorkerNotificationClient.h"

#include "NotificationData.h"
#include "NotificationResources.h"
#include "WorkerGlobalScope.h"
#include "WorkerLoaderProxy.h"
#include "WorkerThread.h"
#include <wtf/threads/BinarySemaphore.h>

namespace WebCore {
Expand Down

0 comments on commit eb5c6c2

Please sign in to comment.