Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix non-libwebrtc builds after r253957
https://bugs.webkit.org/show_bug.cgi?id=205714

Unreviewed.


* GPUProcess/webrtc/LibWebRTCCodecsProxy.mm:
Move the includes inside the compilation guard.


Canonical link: https://commits.webkit.org/218869@main
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@253993 268f45cc-cd09-0410-ab3c-d52691b4dbfc
  • Loading branch information
youennf committed Jan 3, 2020
1 parent 04d0260 commit b473c16
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions Source/WebKit/ChangeLog
@@ -1,3 +1,13 @@
2020-01-03 youenn fablet <youenn@apple.com>

Fix non-libwebrtc builds after r253957
https://bugs.webkit.org/show_bug.cgi?id=205714

Unreviewed.

* GPUProcess/webrtc/LibWebRTCCodecsProxy.mm:
Move the includes inside the compilation guard.

2020-01-02 Keith Rollin <krollin@apple.com>

Reformat WebProcess logging
Expand Down
4 changes: 2 additions & 2 deletions Source/WebKit/GPUProcess/webrtc/LibWebRTCCodecsProxy.mm
Expand Up @@ -26,6 +26,8 @@
#include "config.h"
#include "LibWebRTCCodecsProxy.h"

#if USE(LIBWEBRTC) && PLATFORM(COCOA) && ENABLE(GPU_PROCESS)

#include "DataReference.h"
#include "GPUConnectionToWebProcess.h"
#include "LibWebRTCCodecsMessages.h"
Expand All @@ -35,8 +37,6 @@
#include <webrtc/sdk/WebKit/WebKitUtilities.h>
#include <wtf/MediaTime.h>

#if USE(LIBWEBRTC) && PLATFORM(COCOA) && ENABLE(GPU_PROCESS)

namespace WebKit {

LibWebRTCCodecsProxy::LibWebRTCCodecsProxy(GPUConnectionToWebProcess& connection)
Expand Down

0 comments on commit b473c16

Please sign in to comment.