Bug 1677466 - Remove unnecessary includes from MessageChannel.h and MessageLink.h. r=mccr8

Differential Revision: https://phabricator.services.mozilla.com/D93567

Depends on D93564
This commit is contained in:
Simon Giesecke 2020-11-23 16:06:24 +00:00
parent 7fb8706dc5
commit fdf6246294
2 changed files with 10 additions and 10 deletions

View File

@ -9,36 +9,33 @@
#define ipc_glue_MessageChannel_h 1
#include "base/basictypes.h"
#include "base/message_loop.h"
#include "mozilla/Atomics.h"
#include "mozilla/DebugOnly.h"
#include "mozilla/LinkedList.h"
#include "mozilla/Monitor.h"
#include "mozilla/MozPromise.h"
#include "mozilla/Vector.h"
#if defined(OS_WIN)
# include "mozilla/ipc/Neutering.h"
#endif // defined(OS_WIN)
#include <math.h>
#include <deque>
#include <functional>
#include <map>
#include <stack>
#include <vector>
#include "MessageLink.h"
#include "MessageLink.h" // for HasResultCodes
#include "mozilla/ipc/Transport.h"
#ifdef MOZ_GECKO_PROFILER
# include "mozilla/ProfilerMarkersPrerequisites.h"
# include "mozilla/BaseProfilerMarkers.h"
#endif
class MessageLoop;
class nsIEventTarget;
namespace mozilla {
namespace ipc {
class MessageChannel;
class IToplevelProtocol;
class ActorLifecycleProxy;

View File

@ -8,13 +8,16 @@
#ifndef ipc_glue_MessageLink_h
#define ipc_glue_MessageLink_h 1
#include "base/basictypes.h"
#include <cstdint>
#include "base/message_loop.h"
#include "mozilla/WeakPtr.h"
#include "mozilla/Assertions.h"
#include "mozilla/UniquePtr.h"
#include "mozilla/ipc/Transport.h"
namespace IPC {
class Message;
}
namespace mozilla {
namespace ipc {