Skip to content

Commit

Permalink
Unreviewed non-unified source builds fix
Browse files Browse the repository at this point in the history
* Source/WebKit/Platform/IPC/Connection.cpp:
* Source/WebKit/UIProcess/RemotePageDrawingAreaProxy.cpp:
* Source/WebKit/UIProcess/RemotePageDrawingAreaProxy.h:
* Source/WebKit/UIProcess/RemotePageVisitedLinkStoreRegistration.h:

Canonical link: https://commits.webkit.org/265980@main
  • Loading branch information
fujii committed Jul 12, 2023
1 parent 88351af commit f65f3c5
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Source/WebKit/Platform/IPC/Connection.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,10 @@
#include "UnixMessage.h"
#endif

#if OS(WINDOWS)
#include "ArgumentCodersWin.h"
#endif

namespace IPC {

#if PLATFORM(COCOA)
Expand Down
4 changes: 4 additions & 0 deletions Source/WebKit/UIProcess/RemotePageDrawingAreaProxy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@
#include "config.h"
#include "RemotePageDrawingAreaProxy.h"

#include "DrawingAreaProxy.h"
#include "WebPageProxy.h"
#include "WebProcessProxy.h"

namespace WebKit {

RemotePageDrawingAreaProxy::RemotePageDrawingAreaProxy(DrawingAreaProxy& drawingArea, WebProcessProxy& process)
Expand Down
1 change: 1 addition & 0 deletions Source/WebKit/UIProcess/RemotePageDrawingAreaProxy.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@

#include "DrawingAreaInfo.h"
#include "MessageReceiver.h"
#include "MessageReceiverMap.h"

namespace WebKit {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@

#pragma once

#include "WebPageProxy.h"
#include "WebProcessProxy.h"

namespace WebKit {

class RemotePageVisitedLinkStoreRegistration {
Expand Down

0 comments on commit f65f3c5

Please sign in to comment.