Skip to content

Commit

Permalink
Fixing build error for Bug 265222
Browse files Browse the repository at this point in the history
https://bugs.webkit.org/show_bug.cgi?id=265255

Reviewed by Mark Lam.

Adding a new stub definition for the keyboard-lock, NotificationPayload.cpp build started failing.
So I expect the bugs was already there before and just revealed with new definition.

See more details on the following link:
https://ews-build.webkit.org/#/builders/51/builds/3246/steps/14/logs/errors

* Source/WebCore/Modules/notifications/NotificationJSONParser.cpp:
* Source/WebCore/Modules/notifications/NotificationJSONParser.h:
* Source/WebCore/Modules/notifications/NotificationPayload.cpp:

Canonical link: https://commits.webkit.org/271344@main
  • Loading branch information
xingri committed Nov 30, 2023
1 parent c49191c commit 81bd08c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@

#if ENABLE(DECLARATIVE_WEB_PUSH)

#include "JSDOMConvertEnumeration.h"
#include <wtf/CheckedArithmetic.h>
#include <wtf/text/StringParsingBuffer.h>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
#include "ExceptionOr.h"
#include "NotificationOptionsPayload.h"
#include "NotificationPayload.h"
#include <wtf/JSONValues.h>
#include <wtf/URL.h>
#include <wtf/text/WTFString.h>

Expand Down
3 changes: 3 additions & 0 deletions Source/WebCore/Modules/notifications/NotificationPayload.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@
#include "config.h"
#include "NotificationPayload.h"

#include "NotificationData.h"
#include "NotificationJSONParser.h"

#if ENABLE(DECLARATIVE_WEB_PUSH)

#include "Logging.h"
Expand Down

0 comments on commit 81bd08c

Please sign in to comment.