2009-08-18 23:05:15 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/* vim: set sw=4 ts=8 et tw=80 : */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* 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/. */
|
2009-08-12 20:18:08 +04:00
|
|
|
|
2010-07-19 22:33:33 +04:00
|
|
|
#ifndef mozilla_dom_ContentParent_h
|
|
|
|
#define mozilla_dom_ContentParent_h
|
2009-08-12 20:18:08 +04:00
|
|
|
|
2010-07-19 22:33:33 +04:00
|
|
|
#include "mozilla/dom/PContentParent.h"
|
2009-08-12 20:18:08 +04:00
|
|
|
#include "mozilla/ipc/GeckoChildProcessHost.h"
|
2012-08-02 10:02:29 +04:00
|
|
|
#include "mozilla/dom/ipc/Blob.h"
|
2012-08-03 23:35:58 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2014-02-05 20:37:26 +04:00
|
|
|
#include "mozilla/FileUtils.h"
|
2013-02-15 00:41:29 +04:00
|
|
|
#include "mozilla/HalTypes.h"
|
2013-04-26 04:53:26 +04:00
|
|
|
#include "mozilla/LinkedList.h"
|
2013-07-18 01:31:10 +04:00
|
|
|
#include "mozilla/StaticPtr.h"
|
2009-08-12 20:18:08 +04:00
|
|
|
|
2013-12-13 20:28:46 +04:00
|
|
|
#include "nsDataHashtable.h"
|
2012-09-28 09:43:12 +04:00
|
|
|
#include "nsFrameMessageManager.h"
|
2013-12-13 20:28:46 +04:00
|
|
|
#include "nsHashKeys.h"
|
2009-09-03 04:18:27 +04:00
|
|
|
#include "nsIObserver.h"
|
2010-02-02 04:53:52 +03:00
|
|
|
#include "nsIThreadInternal.h"
|
2010-09-21 08:16:37 +04:00
|
|
|
#include "nsIDOMGeoPositionCallback.h"
|
2013-01-03 01:21:37 +04:00
|
|
|
#include "PermissionMessageUtils.h"
|
2009-09-03 04:18:27 +04:00
|
|
|
|
2012-09-28 09:43:24 +04:00
|
|
|
#define CHILD_PROCESS_SHUTDOWN_MESSAGE NS_LITERAL_STRING("child-process-shutdown")
|
|
|
|
|
2012-08-09 06:58:06 +04:00
|
|
|
class mozIApplication;
|
2012-11-09 21:52:09 +04:00
|
|
|
class nsConsoleService;
|
2014-05-13 21:13:00 +04:00
|
|
|
class nsICycleCollectorLogSink;
|
2012-08-02 10:02:29 +04:00
|
|
|
class nsIDOMBlob;
|
2014-05-13 21:13:00 +04:00
|
|
|
class nsIDumpGCAndCCLogsCallback;
|
2013-01-16 09:29:48 +04:00
|
|
|
class nsIMemoryReporter;
|
2013-12-13 20:28:46 +04:00
|
|
|
class ParentIdleListener;
|
2012-08-02 10:02:29 +04:00
|
|
|
|
2009-08-12 20:18:08 +04:00
|
|
|
namespace mozilla {
|
2009-09-10 02:00:14 +04:00
|
|
|
|
2009-08-12 22:31:48 +04:00
|
|
|
namespace ipc {
|
2012-08-23 23:33:46 +04:00
|
|
|
class OptionalURIParams;
|
|
|
|
class URIParams;
|
2009-08-12 22:31:48 +04:00
|
|
|
class TestShellParent;
|
2012-08-23 23:33:46 +04:00
|
|
|
} // namespace ipc
|
2009-08-12 22:31:48 +04:00
|
|
|
|
2013-07-03 11:24:32 +04:00
|
|
|
namespace jsipc {
|
|
|
|
class JavaScriptParent;
|
2013-06-03 14:14:37 +04:00
|
|
|
class PJavaScriptParent;
|
2013-07-03 11:24:32 +04:00
|
|
|
}
|
|
|
|
|
2012-07-18 03:59:45 +04:00
|
|
|
namespace layers {
|
|
|
|
class PCompositorParent;
|
2014-05-01 05:52:00 +04:00
|
|
|
class PSharedBufferManagerParent;
|
2012-08-23 23:33:46 +04:00
|
|
|
} // namespace layers
|
2012-07-18 03:59:45 +04:00
|
|
|
|
2009-08-12 20:18:08 +04:00
|
|
|
namespace dom {
|
|
|
|
|
2013-08-20 23:45:30 +04:00
|
|
|
class Element;
|
2009-08-12 20:18:08 +04:00
|
|
|
class TabParent;
|
2010-11-19 04:15:23 +03:00
|
|
|
class PStorageParent;
|
2012-08-02 10:02:29 +04:00
|
|
|
class ClonedMessageData;
|
2013-09-24 01:30:40 +04:00
|
|
|
class MemoryReport;
|
|
|
|
class TabContext;
|
2014-03-25 22:37:13 +04:00
|
|
|
class PFileDescriptorSetParent;
|
2009-08-12 20:18:08 +04:00
|
|
|
|
2010-07-19 22:33:33 +04:00
|
|
|
class ContentParent : public PContentParent
|
|
|
|
, public nsIObserver
|
2010-09-21 08:16:37 +04:00
|
|
|
, public nsIDOMGeoPositionCallback
|
2012-09-28 09:43:12 +04:00
|
|
|
, public mozilla::dom::ipc::MessageManagerCallback
|
2013-04-26 04:53:26 +04:00
|
|
|
, public mozilla::LinkedListElement<ContentParent>
|
2009-08-12 20:18:08 +04:00
|
|
|
{
|
|
|
|
typedef mozilla::ipc::GeckoChildProcessHost GeckoChildProcessHost;
|
2012-08-23 23:33:46 +04:00
|
|
|
typedef mozilla::ipc::OptionalURIParams OptionalURIParams;
|
2009-11-11 11:34:08 +03:00
|
|
|
typedef mozilla::ipc::TestShellParent TestShellParent;
|
2012-08-23 23:33:46 +04:00
|
|
|
typedef mozilla::ipc::URIParams URIParams;
|
2012-08-02 10:02:29 +04:00
|
|
|
typedef mozilla::dom::ClonedMessageData ClonedMessageData;
|
2009-08-12 20:18:08 +04:00
|
|
|
|
|
|
|
public:
|
2012-08-16 05:46:03 +04:00
|
|
|
/**
|
|
|
|
* Start up the content-process machinery. This might include
|
|
|
|
* scheduling pre-launch tasks.
|
|
|
|
*/
|
|
|
|
static void StartUp();
|
|
|
|
/** Shut down the content-process machinery. */
|
|
|
|
static void ShutDown();
|
2012-12-28 13:45:16 +04:00
|
|
|
/**
|
|
|
|
* Ensure that all subprocesses are terminated and their OS
|
|
|
|
* resources have been reaped. This is synchronous and can be
|
|
|
|
* very expensive in general. It also bypasses the normal
|
|
|
|
* shutdown process.
|
|
|
|
*/
|
|
|
|
static void JoinAllSubprocesses();
|
2012-08-16 05:46:03 +04:00
|
|
|
|
2013-11-19 15:03:30 +04:00
|
|
|
static bool PreallocatedProcessReady();
|
|
|
|
static void RunAfterPreallocatedProcessReady(nsIRunnable* aRequest);
|
|
|
|
|
2013-04-03 03:52:51 +04:00
|
|
|
static already_AddRefed<ContentParent>
|
|
|
|
GetNewOrUsed(bool aForBrowserElement = false);
|
2012-07-14 01:10:20 +04:00
|
|
|
|
2013-04-26 04:53:26 +04:00
|
|
|
/**
|
|
|
|
* Create a subprocess suitable for use as a preallocated app process.
|
|
|
|
*/
|
|
|
|
static already_AddRefed<ContentParent> PreallocateAppProcess();
|
|
|
|
|
2013-11-22 07:25:34 +04:00
|
|
|
static already_AddRefed<ContentParent> RunNuwaProcess();
|
2013-06-03 14:14:40 +04:00
|
|
|
|
2012-07-14 01:10:20 +04:00
|
|
|
/**
|
2013-02-15 00:41:30 +04:00
|
|
|
* Get or create a content process for the given TabContext. aFrameElement
|
|
|
|
* should be the frame/iframe element with which this process will
|
|
|
|
* associated.
|
2012-07-14 01:10:20 +04:00
|
|
|
*/
|
2013-02-15 00:41:30 +04:00
|
|
|
static TabParent*
|
|
|
|
CreateBrowserOrApp(const TabContext& aContext,
|
2013-07-24 03:39:17 +04:00
|
|
|
Element* aFrameElement);
|
2012-08-09 06:58:06 +04:00
|
|
|
|
2011-08-02 23:35:42 +04:00
|
|
|
static void GetAll(nsTArray<ContentParent*>& aArray);
|
2013-07-18 01:31:10 +04:00
|
|
|
static void GetAllEvenIfDead(nsTArray<ContentParent*>& aArray);
|
2009-08-12 20:18:08 +04:00
|
|
|
|
2014-03-20 04:22:25 +04:00
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_AMBIGUOUS(ContentParent, nsIObserver)
|
|
|
|
|
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
2009-09-03 04:18:27 +04:00
|
|
|
NS_DECL_NSIOBSERVER
|
2010-09-21 08:16:37 +04:00
|
|
|
NS_DECL_NSIDOMGEOPOSITIONCALLBACK
|
2009-09-03 04:18:27 +04:00
|
|
|
|
2012-09-28 09:43:12 +04:00
|
|
|
/**
|
|
|
|
* MessageManagerCallback methods that we override.
|
|
|
|
*/
|
2013-07-11 02:05:39 +04:00
|
|
|
virtual bool DoSendAsyncMessage(JSContext* aCx,
|
|
|
|
const nsAString& aMessage,
|
|
|
|
const mozilla::dom::StructuredCloneData& aData,
|
2013-11-06 21:21:15 +04:00
|
|
|
JS::Handle<JSObject *> aCpows,
|
|
|
|
nsIPrincipal* aPrincipal) MOZ_OVERRIDE;
|
2013-06-05 20:15:48 +04:00
|
|
|
virtual bool CheckPermission(const nsAString& aPermission) MOZ_OVERRIDE;
|
|
|
|
virtual bool CheckManifestURL(const nsAString& aManifestURL) MOZ_OVERRIDE;
|
|
|
|
virtual bool CheckAppHasPermission(const nsAString& aPermission) MOZ_OVERRIDE;
|
2013-06-29 14:52:16 +04:00
|
|
|
virtual bool CheckAppHasStatus(unsigned short aStatus) MOZ_OVERRIDE;
|
2012-09-28 09:43:12 +04:00
|
|
|
|
2013-01-10 17:22:14 +04:00
|
|
|
/** Notify that a tab is beginning its destruction sequence. */
|
|
|
|
void NotifyTabDestroying(PBrowserParent* aTab);
|
2012-07-17 22:27:27 +04:00
|
|
|
/** Notify that a tab was destroyed during normal operation. */
|
2013-01-10 17:22:14 +04:00
|
|
|
void NotifyTabDestroyed(PBrowserParent* aTab,
|
|
|
|
bool aNotifiedDestroying);
|
2009-11-11 11:34:08 +03:00
|
|
|
|
|
|
|
TestShellParent* CreateTestShell();
|
|
|
|
bool DestroyTestShell(TestShellParent* aTestShell);
|
2011-06-24 03:31:58 +04:00
|
|
|
TestShellParent* GetTestShellSingleton();
|
2013-07-03 11:24:32 +04:00
|
|
|
jsipc::JavaScriptParent *GetCPOWManager();
|
2009-08-12 20:18:08 +04:00
|
|
|
|
2010-03-30 00:29:45 +04:00
|
|
|
void ReportChildAlreadyBlocked();
|
2010-02-02 04:53:52 +03:00
|
|
|
bool RequestRunToCompletion();
|
|
|
|
|
2010-04-12 04:24:45 +04:00
|
|
|
bool IsAlive();
|
2012-07-17 22:27:27 +04:00
|
|
|
bool IsForApp();
|
2014-01-14 22:35:08 +04:00
|
|
|
#ifdef MOZ_NUWA_PROCESS
|
|
|
|
bool IsNuwaProcess();
|
|
|
|
#endif
|
2010-04-12 04:24:45 +04:00
|
|
|
|
2011-06-08 23:56:31 +04:00
|
|
|
GeckoChildProcessHost* Process() {
|
|
|
|
return mSubprocess;
|
|
|
|
}
|
|
|
|
|
2013-07-18 01:31:10 +04:00
|
|
|
int32_t Pid();
|
2013-04-26 04:53:26 +04:00
|
|
|
|
2011-08-02 23:35:42 +04:00
|
|
|
bool NeedsPermissionsUpdate() {
|
|
|
|
return mSendPermissionUpdates;
|
|
|
|
}
|
|
|
|
|
2012-08-02 10:02:29 +04:00
|
|
|
BlobParent* GetOrCreateActorForBlob(nsIDOMBlob* aBlob);
|
2013-01-18 00:17:33 +04:00
|
|
|
|
2012-09-06 02:18:48 +04:00
|
|
|
/**
|
|
|
|
* Kill our subprocess and make sure it dies. Should only be used
|
|
|
|
* in emergency situations since it bypasses the normal shutdown
|
|
|
|
* process.
|
|
|
|
*/
|
|
|
|
void KillHard();
|
|
|
|
|
2012-12-28 21:57:35 +04:00
|
|
|
uint64_t ChildID() { return mChildID; }
|
2013-10-26 04:04:50 +04:00
|
|
|
const nsString& AppManifestURL() const { return mAppManifestURL; }
|
|
|
|
|
2013-04-26 04:53:26 +04:00
|
|
|
bool IsPreallocated();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a user-friendly name for this ContentParent. We make no guarantees
|
|
|
|
* about this name: It might not be unique, apps can spoof special names,
|
|
|
|
* etc. So please don't use this name to make any decisions about the
|
|
|
|
* ContentParent based on the value returned here.
|
|
|
|
*/
|
|
|
|
void FriendlyName(nsAString& aName);
|
2012-12-28 21:57:35 +04:00
|
|
|
|
2013-06-03 14:14:40 +04:00
|
|
|
virtual void OnChannelError() MOZ_OVERRIDE;
|
|
|
|
|
2013-06-03 14:14:37 +04:00
|
|
|
virtual PIndexedDBParent* AllocPIndexedDBParent() MOZ_OVERRIDE;
|
|
|
|
virtual bool
|
|
|
|
RecvPIndexedDBConstructor(PIndexedDBParent* aActor) MOZ_OVERRIDE;
|
|
|
|
|
|
|
|
virtual PCrashReporterParent*
|
|
|
|
AllocPCrashReporterParent(const NativeThreadId& tid,
|
2014-01-17 21:46:41 +04:00
|
|
|
const uint32_t& processType) MOZ_OVERRIDE;
|
2013-06-03 14:14:37 +04:00
|
|
|
virtual bool
|
|
|
|
RecvPCrashReporterConstructor(PCrashReporterParent* actor,
|
|
|
|
const NativeThreadId& tid,
|
|
|
|
const uint32_t& processType) MOZ_OVERRIDE;
|
|
|
|
|
|
|
|
virtual PNeckoParent* AllocPNeckoParent() MOZ_OVERRIDE;
|
|
|
|
virtual bool RecvPNeckoConstructor(PNeckoParent* aActor) MOZ_OVERRIDE {
|
|
|
|
return PContentParent::RecvPNeckoConstructor(aActor);
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual PHalParent* AllocPHalParent() MOZ_OVERRIDE;
|
|
|
|
virtual bool RecvPHalConstructor(PHalParent* aActor) MOZ_OVERRIDE {
|
|
|
|
return PContentParent::RecvPHalConstructor(aActor);
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual PStorageParent* AllocPStorageParent() MOZ_OVERRIDE;
|
|
|
|
virtual bool RecvPStorageConstructor(PStorageParent* aActor) MOZ_OVERRIDE {
|
|
|
|
return PContentParent::RecvPStorageConstructor(aActor);
|
|
|
|
}
|
2013-06-03 14:14:40 +04:00
|
|
|
|
2013-06-03 14:14:37 +04:00
|
|
|
virtual PJavaScriptParent*
|
|
|
|
AllocPJavaScriptParent() MOZ_OVERRIDE;
|
|
|
|
virtual bool
|
|
|
|
RecvPJavaScriptConstructor(PJavaScriptParent* aActor) MOZ_OVERRIDE {
|
|
|
|
return PContentParent::RecvPJavaScriptConstructor(aActor);
|
|
|
|
}
|
|
|
|
|
2013-11-24 13:06:27 +04:00
|
|
|
virtual bool RecvRecordingDeviceEvents(const nsString& aRecordingStatus,
|
|
|
|
const nsString& aPageURL,
|
|
|
|
const bool& aIsAudio,
|
|
|
|
const bool& aIsVideo) MOZ_OVERRIDE;
|
2014-05-13 21:13:00 +04:00
|
|
|
|
|
|
|
bool CycleCollectWithLogs(bool aDumpAllTraces,
|
|
|
|
nsICycleCollectorLogSink* aSink,
|
|
|
|
nsIDumpGCAndCCLogsCallback* aCallback);
|
|
|
|
|
2010-02-02 04:53:52 +03:00
|
|
|
protected:
|
2013-06-05 20:15:48 +04:00
|
|
|
void OnChannelConnected(int32_t pid) MOZ_OVERRIDE;
|
2014-01-17 21:46:41 +04:00
|
|
|
virtual void ActorDestroy(ActorDestroyReason why) MOZ_OVERRIDE;
|
2013-06-03 14:14:40 +04:00
|
|
|
void OnNuwaForkTimeout();
|
2010-02-02 04:53:52 +03:00
|
|
|
|
2013-08-27 08:56:57 +04:00
|
|
|
bool ShouldContinueFromReplyTimeout() MOZ_OVERRIDE;
|
2013-11-02 06:09:45 +04:00
|
|
|
bool ShouldSandboxContentProcesses();
|
2013-08-27 08:56:57 +04:00
|
|
|
|
2009-08-12 20:18:08 +04:00
|
|
|
private:
|
2013-04-26 04:53:26 +04:00
|
|
|
static nsDataHashtable<nsStringHashKey, ContentParent*> *sAppContentParents;
|
|
|
|
static nsTArray<ContentParent*>* sNonAppContentParents;
|
|
|
|
static nsTArray<ContentParent*>* sPrivateContent;
|
2013-07-18 01:31:10 +04:00
|
|
|
static StaticAutoPtr<LinkedList<ContentParent> > sContentParents;
|
2009-08-12 20:18:08 +04:00
|
|
|
|
2012-12-28 13:45:16 +04:00
|
|
|
static void JoinProcessesIOThread(const nsTArray<ContentParent*>* aProcesses,
|
|
|
|
Monitor* aMonitor, bool* aDone);
|
|
|
|
|
2013-02-08 18:32:23 +04:00
|
|
|
// Take the preallocated process and transform it into a "real" app process,
|
|
|
|
// for the specified manifest URL. If there is no preallocated process (or
|
|
|
|
// if it's dead), this returns false.
|
|
|
|
static already_AddRefed<ContentParent>
|
|
|
|
MaybeTakePreallocatedAppProcess(const nsAString& aAppManifestURL,
|
2013-02-15 00:41:30 +04:00
|
|
|
hal::ProcessPriority aInitialPriority);
|
|
|
|
|
2013-07-24 03:39:17 +04:00
|
|
|
static hal::ProcessPriority GetInitialProcessPriority(Element* aFrameElement);
|
2013-02-08 18:32:23 +04:00
|
|
|
|
2009-08-12 22:31:48 +04:00
|
|
|
// Hide the raw constructor methods since we don't want client code
|
|
|
|
// using them.
|
2010-07-19 22:33:33 +04:00
|
|
|
using PContentParent::SendPBrowserConstructor;
|
|
|
|
using PContentParent::SendPTestShellConstructor;
|
2009-08-12 20:18:08 +04:00
|
|
|
|
2013-04-26 04:53:26 +04:00
|
|
|
// No more than one of !!aApp, aIsForBrowser, and aIsForPreallocated may be
|
|
|
|
// true.
|
|
|
|
ContentParent(mozIApplication* aApp,
|
|
|
|
bool aIsForBrowser,
|
|
|
|
bool aIsForPreallocated,
|
2013-06-03 14:14:40 +04:00
|
|
|
hal::ProcessPriority aInitialPriority = hal::PROCESS_PRIORITY_FOREGROUND,
|
|
|
|
bool aIsNuwaProcess = false);
|
|
|
|
|
|
|
|
#ifdef MOZ_NUWA_PROCESS
|
|
|
|
ContentParent(ContentParent* aTemplate,
|
|
|
|
const nsAString& aAppManifestURL,
|
|
|
|
base::ProcessHandle aPid,
|
2014-03-13 02:48:15 +04:00
|
|
|
const nsTArray<ProtocolFdMapping>& aFds);
|
2013-06-03 14:14:40 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// The common initialization for the constructors.
|
|
|
|
void InitializeMembers();
|
2013-04-26 04:53:26 +04:00
|
|
|
|
2013-11-29 13:28:54 +04:00
|
|
|
// The common initialization logic shared by all constuctors.
|
|
|
|
void InitInternal(ProcessPriority aPriority,
|
|
|
|
bool aSetupOffMainThreadCompositing,
|
|
|
|
bool aSendRegisteredChrome);
|
|
|
|
|
2010-07-19 22:33:33 +04:00
|
|
|
virtual ~ContentParent();
|
2009-08-12 20:18:08 +04:00
|
|
|
|
2010-12-26 23:03:52 +03:00
|
|
|
void Init();
|
|
|
|
|
2013-02-15 00:41:30 +04:00
|
|
|
// If the frame element indicates that the child process is "critical" and
|
|
|
|
// has a pending system message, this function acquires the CPU wake lock on
|
|
|
|
// behalf of the child. We'll release the lock when the system message is
|
|
|
|
// handled or after a timeout, whichever comes first.
|
2013-07-24 03:39:17 +04:00
|
|
|
void MaybeTakeCPUWakeLock(Element* aFrameElement);
|
2013-02-15 00:41:30 +04:00
|
|
|
|
2013-02-15 00:41:30 +04:00
|
|
|
// Set the child process's priority and then check whether the child is
|
|
|
|
// still alive. Returns true if the process is still alive, and false
|
|
|
|
// otherwise. If you pass a FOREGROUND* priority here, it's (hopefully)
|
|
|
|
// unlikely that the process will be killed after this point.
|
|
|
|
bool SetPriorityAndCheckIsAlive(hal::ProcessPriority aPriority);
|
|
|
|
|
2012-08-16 05:46:03 +04:00
|
|
|
// Transform a pre-allocated app process into a "real" app
|
2014-03-13 02:48:15 +04:00
|
|
|
// process, for the specified manifest URL.
|
|
|
|
void TransformPreallocatedIntoApp(const nsAString& aAppManifestURL);
|
2012-08-16 05:46:03 +04:00
|
|
|
|
2014-02-13 14:42:41 +04:00
|
|
|
// Transform a pre-allocated app process into a browser process. If this
|
|
|
|
// returns false, the child process has died.
|
|
|
|
void TransformPreallocatedIntoBrowser();
|
|
|
|
|
2012-07-17 22:27:27 +04:00
|
|
|
/**
|
|
|
|
* Mark this ContentParent as dead for the purposes of Get*().
|
|
|
|
* This method is idempotent.
|
|
|
|
*/
|
|
|
|
void MarkAsDead();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Exit the subprocess and vamoose. After this call IsAlive()
|
|
|
|
* will return false and this ContentParent will not be returned
|
|
|
|
* by the Get*() funtions. However, the shutdown sequence itself
|
|
|
|
* may be asynchronous.
|
2013-07-15 16:55:13 +04:00
|
|
|
*
|
2013-07-17 23:13:20 +04:00
|
|
|
* If aCloseWithError is true and this is the first call to
|
2013-07-15 16:55:13 +04:00
|
|
|
* ShutDownProcess, then we'll close our channel using CloseWithError()
|
|
|
|
* rather than vanilla Close(). CloseWithError() indicates to IPC that this
|
2013-07-17 23:13:20 +04:00
|
|
|
* is an abnormal shutdown (e.g. a crash).
|
2012-07-17 22:27:27 +04:00
|
|
|
*/
|
2013-07-17 23:13:20 +04:00
|
|
|
void ShutDownProcess(bool aCloseWithError);
|
2012-07-17 22:27:27 +04:00
|
|
|
|
2013-09-26 08:19:09 +04:00
|
|
|
PCompositorParent*
|
2013-07-08 19:48:39 +04:00
|
|
|
AllocPCompositorParent(mozilla::ipc::Transport* aTransport,
|
|
|
|
base::ProcessId aOtherProcess) MOZ_OVERRIDE;
|
2013-09-26 08:19:09 +04:00
|
|
|
PImageBridgeParent*
|
2013-07-08 19:48:39 +04:00
|
|
|
AllocPImageBridgeParent(mozilla::ipc::Transport* aTransport,
|
|
|
|
base::ProcessId aOtherProcess) MOZ_OVERRIDE;
|
2012-07-18 03:59:45 +04:00
|
|
|
|
2014-05-01 05:52:00 +04:00
|
|
|
PSharedBufferManagerParent*
|
|
|
|
AllocPSharedBufferManagerParent(mozilla::ipc::Transport* aTranport,
|
|
|
|
base::ProcessId aOtherProcess) MOZ_OVERRIDE;
|
2013-11-27 11:59:41 +04:00
|
|
|
PBackgroundParent*
|
|
|
|
AllocPBackgroundParent(Transport* aTransport, ProcessId aOtherProcess)
|
|
|
|
MOZ_OVERRIDE;
|
|
|
|
|
2012-09-05 04:36:16 +04:00
|
|
|
virtual bool RecvGetProcessAttributes(uint64_t* aId,
|
|
|
|
bool* aIsForApp,
|
|
|
|
bool* aIsForBrowser) MOZ_OVERRIDE;
|
2012-11-09 01:09:39 +04:00
|
|
|
virtual bool RecvGetXPCOMProcessAttributes(bool* aIsOffline) MOZ_OVERRIDE;
|
2012-09-05 04:36:16 +04:00
|
|
|
|
2014-01-17 21:46:41 +04:00
|
|
|
virtual bool DeallocPJavaScriptParent(mozilla::jsipc::PJavaScriptParent*) MOZ_OVERRIDE;
|
2013-07-03 11:24:32 +04:00
|
|
|
|
2013-07-08 19:48:39 +04:00
|
|
|
virtual PBrowserParent* AllocPBrowserParent(const IPCTabContext& aContext,
|
2014-01-17 21:46:41 +04:00
|
|
|
const uint32_t& aChromeFlags) MOZ_OVERRIDE;
|
|
|
|
virtual bool DeallocPBrowserParent(PBrowserParent* frame) MOZ_OVERRIDE;
|
2009-08-12 20:18:08 +04:00
|
|
|
|
2014-01-17 21:46:41 +04:00
|
|
|
virtual PDeviceStorageRequestParent*
|
|
|
|
AllocPDeviceStorageRequestParent(const DeviceStorageParams&) MOZ_OVERRIDE;
|
|
|
|
virtual bool DeallocPDeviceStorageRequestParent(PDeviceStorageRequestParent*) MOZ_OVERRIDE;
|
2012-06-20 03:14:39 +04:00
|
|
|
|
2014-03-05 07:25:40 +04:00
|
|
|
virtual PFileSystemRequestParent*
|
|
|
|
AllocPFileSystemRequestParent(const FileSystemParams&) MOZ_OVERRIDE;
|
|
|
|
|
|
|
|
virtual bool
|
|
|
|
DeallocPFileSystemRequestParent(PFileSystemRequestParent*) MOZ_OVERRIDE;
|
|
|
|
|
2014-01-17 21:46:41 +04:00
|
|
|
virtual PBlobParent* AllocPBlobParent(const BlobConstructorParams& aParams) MOZ_OVERRIDE;
|
|
|
|
virtual bool DeallocPBlobParent(PBlobParent*) MOZ_OVERRIDE;
|
2012-08-02 10:02:29 +04:00
|
|
|
|
2014-01-17 21:46:41 +04:00
|
|
|
virtual bool DeallocPCrashReporterParent(PCrashReporterParent* crashreporter) MOZ_OVERRIDE;
|
2010-11-24 17:15:03 +03:00
|
|
|
|
2013-02-28 00:31:19 +04:00
|
|
|
virtual bool RecvGetRandomValues(const uint32_t& length,
|
2014-01-17 21:46:41 +04:00
|
|
|
InfallibleTArray<uint8_t>* randomValues) MOZ_OVERRIDE;
|
2013-02-28 00:31:19 +04:00
|
|
|
|
2013-07-08 19:48:39 +04:00
|
|
|
virtual bool DeallocPHalParent(PHalParent*) MOZ_OVERRIDE;
|
2011-10-06 02:15:45 +04:00
|
|
|
|
2014-01-17 21:46:41 +04:00
|
|
|
virtual bool DeallocPIndexedDBParent(PIndexedDBParent* aActor) MOZ_OVERRIDE;
|
2012-07-14 15:24:20 +04:00
|
|
|
|
2014-01-17 21:46:41 +04:00
|
|
|
virtual PMemoryReportRequestParent*
|
2014-03-05 06:27:13 +04:00
|
|
|
AllocPMemoryReportRequestParent(const uint32_t& generation,
|
|
|
|
const bool &minimizeMemoryUsage,
|
|
|
|
const nsString &aDMDDumpIdent) MOZ_OVERRIDE;
|
2014-01-17 21:46:41 +04:00
|
|
|
virtual bool DeallocPMemoryReportRequestParent(PMemoryReportRequestParent* actor) MOZ_OVERRIDE;
|
2011-02-16 21:43:23 +03:00
|
|
|
|
2014-05-13 21:13:00 +04:00
|
|
|
virtual PCycleCollectWithLogsParent*
|
|
|
|
AllocPCycleCollectWithLogsParent(const bool& aDumpAllTraces,
|
|
|
|
const FileDescriptor& aGCLog,
|
|
|
|
const FileDescriptor& aCCLog) MOZ_OVERRIDE;
|
|
|
|
virtual bool
|
|
|
|
DeallocPCycleCollectWithLogsParent(PCycleCollectWithLogsParent* aActor) MOZ_OVERRIDE;
|
|
|
|
|
2014-01-17 21:46:41 +04:00
|
|
|
virtual PTestShellParent* AllocPTestShellParent() MOZ_OVERRIDE;
|
|
|
|
virtual bool DeallocPTestShellParent(PTestShellParent* shell) MOZ_OVERRIDE;
|
2009-08-12 22:31:48 +04:00
|
|
|
|
2014-01-17 21:46:41 +04:00
|
|
|
virtual bool DeallocPNeckoParent(PNeckoParent* necko) MOZ_OVERRIDE;
|
2009-08-18 23:05:15 +04:00
|
|
|
|
2013-07-08 19:48:39 +04:00
|
|
|
virtual PExternalHelperAppParent* AllocPExternalHelperAppParent(
|
2012-08-23 23:33:46 +04:00
|
|
|
const OptionalURIParams& aUri,
|
2010-09-16 02:55:08 +04:00
|
|
|
const nsCString& aMimeContentType,
|
|
|
|
const nsCString& aContentDisposition,
|
2014-02-14 02:43:58 +04:00
|
|
|
const uint32_t& aContentDispositionHint,
|
|
|
|
const nsString& aContentDispositionFilename,
|
2010-09-16 02:55:08 +04:00
|
|
|
const bool& aForceSave,
|
2012-08-22 19:56:38 +04:00
|
|
|
const int64_t& aContentLength,
|
2013-09-12 23:24:10 +04:00
|
|
|
const OptionalURIParams& aReferrer,
|
2014-01-17 21:46:41 +04:00
|
|
|
PBrowserParent* aBrowser) MOZ_OVERRIDE;
|
|
|
|
virtual bool DeallocPExternalHelperAppParent(PExternalHelperAppParent* aService) MOZ_OVERRIDE;
|
2010-09-16 02:55:08 +04:00
|
|
|
|
2014-01-17 21:46:41 +04:00
|
|
|
virtual PSmsParent* AllocPSmsParent() MOZ_OVERRIDE;
|
|
|
|
virtual bool DeallocPSmsParent(PSmsParent*) MOZ_OVERRIDE;
|
2011-11-21 02:40:53 +04:00
|
|
|
|
2014-01-17 21:46:41 +04:00
|
|
|
virtual PTelephonyParent* AllocPTelephonyParent() MOZ_OVERRIDE;
|
|
|
|
virtual bool DeallocPTelephonyParent(PTelephonyParent*) MOZ_OVERRIDE;
|
2013-09-07 10:19:53 +04:00
|
|
|
|
2014-01-17 21:46:41 +04:00
|
|
|
virtual bool DeallocPStorageParent(PStorageParent* aActor) MOZ_OVERRIDE;
|
2010-11-19 04:15:23 +03:00
|
|
|
|
2014-01-17 21:46:41 +04:00
|
|
|
virtual PBluetoothParent* AllocPBluetoothParent() MOZ_OVERRIDE;
|
|
|
|
virtual bool DeallocPBluetoothParent(PBluetoothParent* aActor) MOZ_OVERRIDE;
|
|
|
|
virtual bool RecvPBluetoothConstructor(PBluetoothParent* aActor) MOZ_OVERRIDE;
|
2012-09-13 20:37:14 +04:00
|
|
|
|
2014-01-17 21:46:41 +04:00
|
|
|
virtual PFMRadioParent* AllocPFMRadioParent() MOZ_OVERRIDE;
|
|
|
|
virtual bool DeallocPFMRadioParent(PFMRadioParent* aActor) MOZ_OVERRIDE;
|
2013-09-04 02:28:06 +04:00
|
|
|
|
2013-11-19 01:49:53 +04:00
|
|
|
virtual PAsmJSCacheEntryParent* AllocPAsmJSCacheEntryParent(
|
|
|
|
const asmjscache::OpenMode& aOpenMode,
|
2013-12-05 08:32:52 +04:00
|
|
|
const asmjscache::WriteParams& aWriteParams,
|
2013-11-19 01:49:53 +04:00
|
|
|
const IPC::Principal& aPrincipal) MOZ_OVERRIDE;
|
|
|
|
virtual bool DeallocPAsmJSCacheEntryParent(
|
|
|
|
PAsmJSCacheEntryParent* aActor) MOZ_OVERRIDE;
|
|
|
|
|
2014-01-17 21:46:41 +04:00
|
|
|
virtual PSpeechSynthesisParent* AllocPSpeechSynthesisParent() MOZ_OVERRIDE;
|
|
|
|
virtual bool DeallocPSpeechSynthesisParent(PSpeechSynthesisParent* aActor) MOZ_OVERRIDE;
|
|
|
|
virtual bool RecvPSpeechSynthesisConstructor(PSpeechSynthesisParent* aActor) MOZ_OVERRIDE;
|
2013-04-04 02:13:17 +04:00
|
|
|
|
2014-01-17 21:46:41 +04:00
|
|
|
virtual bool RecvReadPrefsArray(InfallibleTArray<PrefSetting>* aPrefs) MOZ_OVERRIDE;
|
|
|
|
virtual bool RecvReadFontList(InfallibleTArray<FontListEntry>* retValue) MOZ_OVERRIDE;
|
2010-05-28 22:09:15 +04:00
|
|
|
|
2014-01-17 21:46:41 +04:00
|
|
|
virtual bool RecvReadPermissions(InfallibleTArray<IPC::Permission>* aPermissions) MOZ_OVERRIDE;
|
2011-04-30 03:46:20 +04:00
|
|
|
|
2014-01-17 21:46:41 +04:00
|
|
|
virtual bool RecvSetClipboardText(const nsString& text,
|
|
|
|
const bool& isPrivateData,
|
|
|
|
const int32_t& whichClipboard) MOZ_OVERRIDE;
|
|
|
|
virtual bool RecvGetClipboardText(const int32_t& whichClipboard, nsString* text) MOZ_OVERRIDE;
|
2014-02-10 04:13:10 +04:00
|
|
|
virtual bool RecvEmptyClipboard(const int32_t& whichClipboard) MOZ_OVERRIDE;
|
|
|
|
virtual bool RecvClipboardHasText(const int32_t& whichClipboard, bool* hasText) MOZ_OVERRIDE;
|
2010-05-26 04:13:47 +04:00
|
|
|
|
2014-01-17 21:46:41 +04:00
|
|
|
virtual bool RecvGetSystemColors(const uint32_t& colorsCount,
|
|
|
|
InfallibleTArray<uint32_t>* colors) MOZ_OVERRIDE;
|
|
|
|
virtual bool RecvGetIconForExtension(const nsCString& aFileExt,
|
|
|
|
const uint32_t& aIconSize,
|
|
|
|
InfallibleTArray<uint8_t>* bits) MOZ_OVERRIDE;
|
|
|
|
virtual bool RecvGetShowPasswordSetting(bool* showPassword) MOZ_OVERRIDE;
|
2011-03-30 22:04:41 +04:00
|
|
|
|
2014-01-17 21:46:41 +04:00
|
|
|
virtual bool RecvStartVisitedQuery(const URIParams& uri) MOZ_OVERRIDE;
|
2010-07-02 19:50:41 +04:00
|
|
|
|
2012-08-23 23:33:46 +04:00
|
|
|
virtual bool RecvVisitURI(const URIParams& uri,
|
|
|
|
const OptionalURIParams& referrer,
|
2014-01-17 21:46:41 +04:00
|
|
|
const uint32_t& flags) MOZ_OVERRIDE;
|
2010-07-02 19:50:24 +04:00
|
|
|
|
2012-08-23 23:33:46 +04:00
|
|
|
virtual bool RecvSetURITitle(const URIParams& uri,
|
2014-01-17 21:46:41 +04:00
|
|
|
const nsString& title) MOZ_OVERRIDE;
|
2012-12-06 07:01:58 +04:00
|
|
|
|
2010-09-15 20:44:57 +04:00
|
|
|
virtual bool RecvShowAlertNotification(const nsString& aImageUrl, const nsString& aTitle,
|
2011-09-29 10:19:26 +04:00
|
|
|
const nsString& aText, const bool& aTextClickable,
|
2013-03-18 17:24:53 +04:00
|
|
|
const nsString& aCookie, const nsString& aName,
|
2013-11-12 03:56:21 +04:00
|
|
|
const nsString& aBidi, const nsString& aLang,
|
2014-01-17 21:46:41 +04:00
|
|
|
const IPC::Principal& aPrincipal) MOZ_OVERRIDE;
|
2013-03-18 17:24:53 +04:00
|
|
|
|
2013-11-12 03:56:21 +04:00
|
|
|
virtual bool RecvCloseAlert(const nsString& aName,
|
2014-01-17 21:46:41 +04:00
|
|
|
const IPC::Principal& aPrincipal) MOZ_OVERRIDE;
|
2010-07-02 19:53:42 +04:00
|
|
|
|
2014-01-17 21:46:41 +04:00
|
|
|
virtual bool RecvLoadURIExternal(const URIParams& uri) MOZ_OVERRIDE;
|
2010-08-10 21:14:45 +04:00
|
|
|
|
2012-08-02 10:02:29 +04:00
|
|
|
virtual bool RecvSyncMessage(const nsString& aMsg,
|
|
|
|
const ClonedMessageData& aData,
|
2013-07-11 02:05:39 +04:00
|
|
|
const InfallibleTArray<CpowEntry>& aCpows,
|
2013-11-06 21:21:15 +04:00
|
|
|
const IPC::Principal& aPrincipal,
|
2014-01-17 21:46:41 +04:00
|
|
|
InfallibleTArray<nsString>* aRetvals) MOZ_OVERRIDE;
|
2013-10-01 20:15:06 +04:00
|
|
|
virtual bool AnswerRpcMessage(const nsString& aMsg,
|
|
|
|
const ClonedMessageData& aData,
|
|
|
|
const InfallibleTArray<CpowEntry>& aCpows,
|
2013-11-06 21:21:15 +04:00
|
|
|
const IPC::Principal& aPrincipal,
|
2014-01-17 21:46:41 +04:00
|
|
|
InfallibleTArray<nsString>* aRetvals) MOZ_OVERRIDE;
|
2012-08-02 10:02:29 +04:00
|
|
|
virtual bool RecvAsyncMessage(const nsString& aMsg,
|
2013-07-11 02:05:39 +04:00
|
|
|
const ClonedMessageData& aData,
|
2013-11-06 21:21:15 +04:00
|
|
|
const InfallibleTArray<CpowEntry>& aCpows,
|
2014-01-17 21:46:41 +04:00
|
|
|
const IPC::Principal& aPrincipal) MOZ_OVERRIDE;
|
2010-08-31 22:58:35 +04:00
|
|
|
|
2013-01-09 19:03:28 +04:00
|
|
|
virtual bool RecvFilePathUpdateNotify(const nsString& aType,
|
2013-05-11 13:10:18 +04:00
|
|
|
const nsString& aStorageName,
|
2013-01-09 19:03:28 +04:00
|
|
|
const nsString& aFilePath,
|
2014-01-17 21:46:41 +04:00
|
|
|
const nsCString& aReason) MOZ_OVERRIDE;
|
2013-01-09 19:03:28 +04:00
|
|
|
|
2013-02-26 21:27:31 +04:00
|
|
|
virtual bool RecvAddGeolocationListener(const IPC::Principal& aPrincipal,
|
2014-01-17 21:46:41 +04:00
|
|
|
const bool& aHighAccuracy) MOZ_OVERRIDE;
|
|
|
|
virtual bool RecvRemoveGeolocationListener() MOZ_OVERRIDE;
|
|
|
|
virtual bool RecvSetGeolocationHigherAccuracy(const bool& aEnable) MOZ_OVERRIDE;
|
2010-09-21 08:16:37 +04:00
|
|
|
|
2014-01-17 21:46:41 +04:00
|
|
|
virtual bool RecvConsoleMessage(const nsString& aMessage) MOZ_OVERRIDE;
|
2010-09-24 05:39:32 +04:00
|
|
|
virtual bool RecvScriptError(const nsString& aMessage,
|
|
|
|
const nsString& aSourceName,
|
|
|
|
const nsString& aSourceLine,
|
2012-08-22 19:56:38 +04:00
|
|
|
const uint32_t& aLineNumber,
|
|
|
|
const uint32_t& aColNumber,
|
|
|
|
const uint32_t& aFlags,
|
2014-01-17 21:46:41 +04:00
|
|
|
const nsCString& aCategory) MOZ_OVERRIDE;
|
2010-09-24 05:39:32 +04:00
|
|
|
|
2014-01-17 21:46:41 +04:00
|
|
|
virtual bool RecvPrivateDocShellsExist(const bool& aExist) MOZ_OVERRIDE;
|
2012-08-02 10:32:04 +04:00
|
|
|
|
2014-01-17 21:46:41 +04:00
|
|
|
virtual bool RecvFirstIdle() MOZ_OVERRIDE;
|
2012-10-09 08:46:19 +04:00
|
|
|
|
2014-04-10 21:39:20 +04:00
|
|
|
virtual bool RecvAudioChannelGetState(const AudioChannel& aChannel,
|
2013-01-09 11:18:16 +04:00
|
|
|
const bool& aElementHidden,
|
|
|
|
const bool& aElementWasHidden,
|
2014-01-17 21:46:41 +04:00
|
|
|
AudioChannelState* aValue) MOZ_OVERRIDE;
|
2012-12-06 07:01:58 +04:00
|
|
|
|
2014-04-10 21:39:20 +04:00
|
|
|
virtual bool RecvAudioChannelRegisterType(const AudioChannel& aChannel,
|
2014-01-17 21:46:41 +04:00
|
|
|
const bool& aWithVideo) MOZ_OVERRIDE;
|
2014-04-10 21:39:20 +04:00
|
|
|
virtual bool RecvAudioChannelUnregisterType(const AudioChannel& aChannel,
|
2013-09-18 07:46:22 +04:00
|
|
|
const bool& aElementHidden,
|
2014-01-17 21:46:41 +04:00
|
|
|
const bool& aWithVideo) MOZ_OVERRIDE;
|
2013-01-09 11:18:16 +04:00
|
|
|
|
2014-01-17 21:46:41 +04:00
|
|
|
virtual bool RecvAudioChannelChangedNotification() MOZ_OVERRIDE;
|
2012-12-06 07:01:58 +04:00
|
|
|
|
2014-04-10 21:39:20 +04:00
|
|
|
virtual bool RecvAudioChannelChangeDefVolChannel(const int32_t& aChannel,
|
2014-01-17 21:46:41 +04:00
|
|
|
const bool& aHidden) MOZ_OVERRIDE;
|
2014-05-21 09:49:36 +04:00
|
|
|
virtual bool RecvGetSystemMemory(const uint64_t& getterId) MOZ_OVERRIDE;
|
2014-01-17 21:46:41 +04:00
|
|
|
virtual bool RecvBroadcastVolume(const nsString& aVolumeName) MOZ_OVERRIDE;
|
2012-12-15 04:01:34 +04:00
|
|
|
|
2014-01-17 21:46:41 +04:00
|
|
|
virtual bool RecvSpeakerManagerGetSpeakerStatus(bool* aValue) MOZ_OVERRIDE;
|
2013-11-25 03:50:03 +04:00
|
|
|
|
2014-01-17 21:46:41 +04:00
|
|
|
virtual bool RecvSpeakerManagerForceSpeaker(const bool& aEnable) MOZ_OVERRIDE;
|
2013-11-25 03:50:03 +04:00
|
|
|
|
2013-02-15 00:41:30 +04:00
|
|
|
virtual bool RecvSystemMessageHandled() MOZ_OVERRIDE;
|
|
|
|
|
2013-06-03 14:14:40 +04:00
|
|
|
virtual bool RecvNuwaReady() MOZ_OVERRIDE;
|
|
|
|
|
|
|
|
virtual bool RecvAddNewProcess(const uint32_t& aPid,
|
|
|
|
const InfallibleTArray<ProtocolFdMapping>& aFds) MOZ_OVERRIDE;
|
|
|
|
|
2013-07-09 10:37:47 +04:00
|
|
|
virtual bool RecvCreateFakeVolume(const nsString& fsName, const nsString& mountPoint) MOZ_OVERRIDE;
|
|
|
|
|
|
|
|
virtual bool RecvSetFakeVolumeState(const nsString& fsName, const int32_t& fsState) MOZ_OVERRIDE;
|
|
|
|
|
2013-08-16 21:59:31 +04:00
|
|
|
virtual bool RecvKeywordToURI(const nsCString& aKeyword, OptionalInputStreamParams* aPostData,
|
2014-01-17 21:46:41 +04:00
|
|
|
OptionalURIParams* aURI) MOZ_OVERRIDE;
|
2013-08-16 21:59:31 +04:00
|
|
|
|
2011-07-13 10:52:31 +04:00
|
|
|
virtual void ProcessingError(Result what) MOZ_OVERRIDE;
|
|
|
|
|
2014-01-11 05:09:20 +04:00
|
|
|
virtual bool RecvGetGraphicsFeatureStatus(const int32_t& aFeature,
|
|
|
|
int32_t* aStatus,
|
2014-01-17 21:46:41 +04:00
|
|
|
bool* aSuccess) MOZ_OVERRIDE;
|
2014-01-11 05:09:20 +04:00
|
|
|
|
2014-01-17 21:46:41 +04:00
|
|
|
virtual bool RecvAddIdleObserver(const uint64_t& observerId,
|
|
|
|
const uint32_t& aIdleTimeInS) MOZ_OVERRIDE;
|
|
|
|
virtual bool RecvRemoveIdleObserver(const uint64_t& observerId,
|
|
|
|
const uint32_t& aIdleTimeInS) MOZ_OVERRIDE;
|
2013-12-13 20:28:46 +04:00
|
|
|
|
2014-02-05 20:37:26 +04:00
|
|
|
virtual bool
|
|
|
|
RecvBackUpXResources(const FileDescriptor& aXSocketFd) MOZ_OVERRIDE;
|
|
|
|
|
2014-03-25 22:37:13 +04:00
|
|
|
virtual PFileDescriptorSetParent*
|
|
|
|
AllocPFileDescriptorSetParent(const mozilla::ipc::FileDescriptor&) MOZ_OVERRIDE;
|
|
|
|
|
|
|
|
virtual bool
|
|
|
|
DeallocPFileDescriptorSetParent(PFileDescriptorSetParent*) MOZ_OVERRIDE;
|
|
|
|
|
2013-08-01 01:26:19 +04:00
|
|
|
// If you add strong pointers to cycle collected objects here, be sure to
|
|
|
|
// release these objects in ShutDownProcess. See the comment there for more
|
|
|
|
// details.
|
|
|
|
|
2009-09-03 04:18:27 +04:00
|
|
|
GeckoChildProcessHost* mSubprocess;
|
2010-02-02 04:53:52 +03:00
|
|
|
|
2012-11-17 19:05:18 +04:00
|
|
|
uint64_t mChildID;
|
2012-08-22 19:56:38 +04:00
|
|
|
int32_t mGeolocationWatchID;
|
2010-02-02 04:53:52 +03:00
|
|
|
|
2013-04-26 04:53:26 +04:00
|
|
|
nsString mAppManifestURL;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* We cache mAppName instead of looking it up using mAppManifestURL when we
|
|
|
|
* need it because it turns out that getting an app from the apps service is
|
|
|
|
* expensive.
|
|
|
|
*/
|
|
|
|
nsString mAppName;
|
|
|
|
|
2011-08-02 23:57:48 +04:00
|
|
|
nsRefPtr<nsFrameMessageManager> mMessageManager;
|
2011-06-08 23:56:31 +04:00
|
|
|
|
2013-01-10 17:22:14 +04:00
|
|
|
// After we initiate shutdown, we also start a timer to ensure
|
|
|
|
// that even content processes that are 100% blocked (say from
|
|
|
|
// SIGSTOP), are still killed eventually. This task enforces that
|
|
|
|
// timer.
|
|
|
|
CancelableTask* mForceKillTask;
|
|
|
|
// How many tabs we're waiting to finish their destruction
|
|
|
|
// sequence. Precisely, how many TabParents have called
|
|
|
|
// NotifyTabDestroying() but not called NotifyTabDestroyed().
|
|
|
|
int32_t mNumDestroyingTabs;
|
2012-11-28 00:43:52 +04:00
|
|
|
// True only while this is ready to be used to host remote tabs.
|
|
|
|
// This must not be used for new purposes after mIsAlive goes to
|
|
|
|
// false, but some previously scheduled IPC traffic may still pass
|
|
|
|
// through.
|
2012-09-05 04:36:16 +04:00
|
|
|
bool mIsAlive;
|
2013-08-07 22:08:52 +04:00
|
|
|
|
2012-09-05 04:36:16 +04:00
|
|
|
bool mSendPermissionUpdates;
|
|
|
|
bool mIsForBrowser;
|
2014-01-14 22:35:08 +04:00
|
|
|
bool mIsNuwaProcess;
|
2012-09-05 04:36:16 +04:00
|
|
|
|
2013-08-17 04:44:17 +04:00
|
|
|
// These variables track whether we've called Close(), CloseWithError()
|
|
|
|
// and KillHard() on our channel.
|
2013-08-07 22:08:52 +04:00
|
|
|
bool mCalledClose;
|
|
|
|
bool mCalledCloseWithError;
|
2013-08-17 04:44:17 +04:00
|
|
|
bool mCalledKillHard;
|
2013-08-07 22:08:52 +04:00
|
|
|
|
2011-06-08 23:56:31 +04:00
|
|
|
friend class CrashReporterParent;
|
2012-11-09 21:52:09 +04:00
|
|
|
|
|
|
|
nsRefPtr<nsConsoleService> mConsoleService;
|
2012-11-09 22:23:18 +04:00
|
|
|
nsConsoleService* GetConsoleService();
|
2013-12-13 20:28:46 +04:00
|
|
|
|
2014-03-18 04:23:03 +04:00
|
|
|
nsDataHashtable<nsUint64HashKey, nsRefPtr<ParentIdleListener> > mIdleListeners;
|
2014-02-05 20:37:26 +04:00
|
|
|
|
|
|
|
#ifdef MOZ_X11
|
|
|
|
// Dup of child's X socket, used to scope its resources to this
|
|
|
|
// object instead of the child process's lifetime.
|
|
|
|
ScopedClose mChildXSocketFdDup;
|
|
|
|
#endif
|
2009-08-12 20:18:08 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2013-12-13 20:28:46 +04:00
|
|
|
class ParentIdleListener : public nsIObserver {
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIOBSERVER
|
|
|
|
|
|
|
|
ParentIdleListener(mozilla::dom::ContentParent* aParent, uint64_t aObserver)
|
|
|
|
: mParent(aParent), mObserver(aObserver)
|
|
|
|
{}
|
|
|
|
virtual ~ParentIdleListener() {}
|
|
|
|
private:
|
|
|
|
nsRefPtr<mozilla::dom::ContentParent> mParent;
|
|
|
|
uint64_t mObserver;
|
|
|
|
};
|
|
|
|
|
2009-08-12 20:18:08 +04:00
|
|
|
#endif
|