Bug 1626555 - Add dom/network to the list of non-unified-build-compatible directories. r=sg

Depends on D95145

Differential Revision: https://phabricator.services.mozilla.com/D95153
This commit is contained in:
Andi-Bogdan Postelnicu 2020-10-29 15:21:44 +00:00
parent 53ece981b4
commit fea9419ddc
8 changed files with 12 additions and 2 deletions

View File

@ -39,5 +39,6 @@ dom/mathml/
dom/media/
dom/messagechannel/
dom/midi/
dom/network/
dom/quota/
dom/simpledb/

View File

@ -7,6 +7,7 @@
#include <limits>
#include "mozilla/Hal.h"
#include "ConnectionWorker.h"
#include "mozilla/dom/WorkerPrivate.h"
#include "mozilla/dom/WorkerRef.h"
#include "mozilla/dom/WorkerRunnable.h"

View File

@ -7,9 +7,11 @@
#include "TCPServerSocket.h"
#include "TCPServerSocketParent.h"
#include "nsJSUtils.h"
#include "TCPSocket.h"
#include "TCPSocketParent.h"
#include "mozilla/Unused.h"
#include "mozilla/dom/BrowserParent.h"
#include "mozilla/dom/TCPServerSocketEvent.h"
namespace mozilla {
namespace dom {

View File

@ -9,6 +9,7 @@
#include "TCPSocket.h"
#include "TCPServerSocket.h"
#include "TCPSocketChild.h"
#include "TCPSocketParent.h"
#include "mozilla/dom/ScriptSettings.h"
#include "mozilla/dom/TCPSocketBinding.h"
#include "mozilla/dom/TCPSocketErrorEvent.h"

View File

@ -16,6 +16,7 @@
#include "mozilla/HoldDropJSObjects.h"
#include "nsISocketTransport.h"
#include "nsNetUtil.h"
#include "TCPSocket.h"
namespace IPC {

View File

@ -25,8 +25,10 @@ struct JSContext;
namespace mozilla {
namespace net {
extern LazyLogModule gUDPSocketLog;
#define UDPSOCKET_LOG(args) MOZ_LOG(gUDPSocketLog, LogLevel::Debug, args)
#define UDPSOCKET_LOG_ENABLED() MOZ_LOG_TEST(gUDPSocketLog, LogLevel::Debug)
#define UDPSOCKET_LOG(args) \
MOZ_LOG(::mozilla::net::gUDPSocketLog, LogLevel::Debug, args)
#define UDPSOCKET_LOG_ENABLED() \
MOZ_LOG_TEST(::mozilla::net::gUDPSocketLog, LogLevel::Debug)
} // namespace net
namespace dom {

View File

@ -5,6 +5,7 @@
* You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "UDPSocketChild.h"
#include "UDPSocket.h"
#include "mozilla/Unused.h"
#include "mozilla/ipc/IPCStreamUtils.h"
#include "mozilla/net/NeckoChild.h"

View File

@ -5,6 +5,7 @@
* You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "UDPSocketParent.h"
#include "UDPSocket.h"
#include "nsComponentManagerUtils.h"
#include "nsIUDPSocket.h"
#include "nsINetAddr.h"