mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 14:18:48 +00:00
6f81d7d0dc
- namespace comment (0548ea8a8) - Bug 1167411 - Add JSAutoStructuredCloneBuffer::abandon, r=jorendorff (6589a8900) - Bug 911972 - MessagePort and MessageChannel in workers, r=smaug, r=bent (4c533d3ca) - Bug 1172264 - Track the MDSM's duration as a TimeUnit and eliminate the separate concept of 'end time'. r=jww (49f8f2442) - Bug 1172264 - Require Manual disconnection for all mirrors. r=jww (845e57496) - Bug 1172264 - Switch MediaDecoder's mDuration represenation to a double. r=jww (dfde6482d) - Bug 1172264 - Mirror duration from the MDSM to the MediaDecoder. r=jww (a744fd08f) - No bug. Refactor GC type annotations, re=terrence (b6bc5723e) - Bug 1132744 - Update set of GC types, r=sfink (935175adb) - Bug 967031 - Rename DumpHeapComplete to DumpHeap; r=terrence (337391745) - Bug 1169097 - Remove CountHeap; r=sfink (074fdb34c) - Bug 1169086 - Use virtual dispatch to implement callback tracer; r=jonco, r=mccr8 (667218a33)
93 lines
2.8 KiB
C++
93 lines
2.8 KiB
C++
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#ifndef mozilla_ipc_backgroundchild_h__
|
|
#define mozilla_ipc_backgroundchild_h__
|
|
|
|
#include "base/process.h"
|
|
#include "mozilla/Attributes.h"
|
|
#include "mozilla/ipc/Transport.h"
|
|
|
|
class nsIDOMBlob;
|
|
class nsIIPCBackgroundChildCreateCallback;
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
|
|
class BlobImpl;
|
|
class ContentChild;
|
|
class ContentParent;
|
|
class PBlobChild;
|
|
|
|
} // namespace dom
|
|
|
|
namespace ipc {
|
|
|
|
class PBackgroundChild;
|
|
|
|
// This class allows access to the PBackground protocol. PBackground allows
|
|
// communication between any thread (in the parent or a child process) and a
|
|
// single background thread in the parent process. Each PBackgroundChild
|
|
// instance is tied to the thread on which it is created and must not be shared
|
|
// across threads. Each PBackgroundChild is unique and valid as long as its
|
|
// designated thread lives.
|
|
//
|
|
// Creation of PBackground is asynchronous. GetForCurrentThread() will return
|
|
// null until the sequence is complete. GetOrCreateForCurrentThread() will start
|
|
// the creation sequence and will call back via the
|
|
// nsIIPCBackgroundChildCreateCallback interface when completed. Thereafter
|
|
// (assuming success) GetForCurrentThread() will return the same actor every
|
|
// time.
|
|
//
|
|
// CloseForCurrentThread() will close the current PBackground actor. Subsequent
|
|
// calls to GetForCurrentThread will return null. CloseForCurrentThread() may
|
|
// only be called exactly once for each thread-specific actor. Currently it is
|
|
// illegal to call this before the PBackground actor has been created.
|
|
//
|
|
// The PBackgroundChild actor and all its sub-protocol actors will be
|
|
// automatically destroyed when its designated thread completes.
|
|
class BackgroundChild final
|
|
{
|
|
friend class mozilla::dom::ContentChild;
|
|
friend class mozilla::dom::ContentParent;
|
|
|
|
typedef base::ProcessId ProcessId;
|
|
typedef mozilla::ipc::Transport Transport;
|
|
|
|
public:
|
|
// See above.
|
|
static PBackgroundChild*
|
|
GetForCurrentThread();
|
|
|
|
// See above.
|
|
static bool
|
|
GetOrCreateForCurrentThread(nsIIPCBackgroundChildCreateCallback* aCallback);
|
|
|
|
static mozilla::dom::PBlobChild*
|
|
GetOrCreateActorForBlob(PBackgroundChild* aBackgroundActor,
|
|
nsIDOMBlob* aBlob);
|
|
|
|
static mozilla::dom::PBlobChild*
|
|
GetOrCreateActorForBlobImpl(PBackgroundChild* aBackgroundActor,
|
|
mozilla::dom::BlobImpl* aBlobImpl);
|
|
|
|
// See above.
|
|
static void
|
|
CloseForCurrentThread();
|
|
|
|
private:
|
|
// Only called by ContentChild or ContentParent.
|
|
static void
|
|
Startup();
|
|
|
|
// Only called by ContentChild.
|
|
static PBackgroundChild*
|
|
Alloc(Transport* aTransport, ProcessId aOtherProcess);
|
|
};
|
|
|
|
} // namespace ipc
|
|
} // namespace mozilla
|
|
|
|
#endif // mozilla_ipc_backgroundchild_h__
|