mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-30 00:01:50 +00:00
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:
parent
53ece981b4
commit
fea9419ddc
@ -39,5 +39,6 @@ dom/mathml/
|
||||
dom/media/
|
||||
dom/messagechannel/
|
||||
dom/midi/
|
||||
dom/network/
|
||||
dom/quota/
|
||||
dom/simpledb/
|
||||
|
@ -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"
|
||||
|
||||
|
@ -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 {
|
||||
|
@ -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"
|
||||
|
@ -16,6 +16,7 @@
|
||||
#include "mozilla/HoldDropJSObjects.h"
|
||||
#include "nsISocketTransport.h"
|
||||
#include "nsNetUtil.h"
|
||||
#include "TCPSocket.h"
|
||||
|
||||
namespace IPC {
|
||||
|
||||
|
@ -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 {
|
||||
|
@ -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"
|
||||
|
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user