2009-08-18 12:05:15 -07: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 04:12:37 -07: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 09:18:08 -07:00
|
|
|
|
2010-07-19 11:33:33 -07:00
|
|
|
#ifndef mozilla_dom_ContentParent_h
|
|
|
|
#define mozilla_dom_ContentParent_h
|
2009-08-12 09:18:08 -07:00
|
|
|
|
2009-09-02 17:18:27 -07:00
|
|
|
#include "base/waitable_event_watcher.h"
|
|
|
|
|
2010-07-19 11:33:33 -07:00
|
|
|
#include "mozilla/dom/PContentParent.h"
|
2011-02-16 10:43:23 -08:00
|
|
|
#include "mozilla/dom/PMemoryReportRequestParent.h"
|
2009-08-12 09:18:08 -07:00
|
|
|
#include "mozilla/ipc/GeckoChildProcessHost.h"
|
2012-08-01 23:02:29 -07:00
|
|
|
#include "mozilla/dom/ipc/Blob.h"
|
2012-08-03 12:35:58 -07:00
|
|
|
#include "mozilla/Attributes.h"
|
2009-08-12 09:18:08 -07:00
|
|
|
|
2009-09-02 17:18:27 -07:00
|
|
|
#include "nsIObserver.h"
|
2010-02-01 17:53:52 -08:00
|
|
|
#include "nsIThreadInternal.h"
|
2010-07-02 08:50:24 -07:00
|
|
|
#include "nsNetUtil.h"
|
2010-07-15 07:04:25 -07:00
|
|
|
#include "nsIPermissionManager.h"
|
2010-09-20 21:16:37 -07:00
|
|
|
#include "nsIDOMGeoPositionCallback.h"
|
2011-02-16 10:43:23 -08:00
|
|
|
#include "nsIMemoryReporter.h"
|
|
|
|
#include "nsCOMArray.h"
|
2012-07-13 14:10:20 -07:00
|
|
|
#include "nsDataHashtable.h"
|
2012-08-01 23:02:29 -07:00
|
|
|
#include "nsHashKeys.h"
|
2009-09-02 17:18:27 -07:00
|
|
|
|
2012-08-08 19:58:06 -07:00
|
|
|
class mozIApplication;
|
2012-09-28 06:08:04 -07:00
|
|
|
class nsFrameMessageManager;
|
2012-08-01 23:02:29 -07:00
|
|
|
class nsIDOMBlob;
|
|
|
|
|
2009-08-12 09:18:08 -07:00
|
|
|
namespace mozilla {
|
2009-09-09 15:00:14 -07:00
|
|
|
|
2009-08-12 11:31:48 -07:00
|
|
|
namespace ipc {
|
2012-08-23 12:33:46 -07:00
|
|
|
class OptionalURIParams;
|
|
|
|
class URIParams;
|
2009-08-12 11:31:48 -07:00
|
|
|
class TestShellParent;
|
2012-08-23 12:33:46 -07:00
|
|
|
} // namespace ipc
|
2009-08-12 11:31:48 -07:00
|
|
|
|
2012-07-17 16:59:45 -07:00
|
|
|
namespace layers {
|
|
|
|
class PCompositorParent;
|
2012-08-23 12:33:46 -07:00
|
|
|
} // namespace layers
|
2012-07-17 16:59:45 -07:00
|
|
|
|
2009-08-12 09:18:08 -07:00
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
class TabParent;
|
2010-11-18 17:15:23 -08:00
|
|
|
class PStorageParent;
|
2012-08-01 23:02:29 -07:00
|
|
|
class ClonedMessageData;
|
2009-08-12 09:18:08 -07:00
|
|
|
|
2010-07-19 11:33:33 -07:00
|
|
|
class ContentParent : public PContentParent
|
|
|
|
, public nsIObserver
|
|
|
|
, public nsIThreadObserver
|
2010-09-20 21:16:37 -07:00
|
|
|
, public nsIDOMGeoPositionCallback
|
2009-08-12 09:18:08 -07:00
|
|
|
{
|
|
|
|
typedef mozilla::ipc::GeckoChildProcessHost GeckoChildProcessHost;
|
2012-08-23 12:33:46 -07:00
|
|
|
typedef mozilla::ipc::OptionalURIParams OptionalURIParams;
|
2009-11-11 00:34:08 -08:00
|
|
|
typedef mozilla::ipc::TestShellParent TestShellParent;
|
2012-08-23 12:33:46 -07:00
|
|
|
typedef mozilla::ipc::URIParams URIParams;
|
2012-08-01 23:02:29 -07:00
|
|
|
typedef mozilla::dom::ClonedMessageData ClonedMessageData;
|
2009-08-12 09:18:08 -07:00
|
|
|
|
|
|
|
public:
|
2012-08-15 18:46:03 -07: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-08-23 03:23:43 -07:00
|
|
|
static ContentParent* GetNewOrUsed(bool aForBrowserElement = false);
|
2012-07-13 14:10:20 -07:00
|
|
|
|
|
|
|
/**
|
2012-08-08 19:58:06 -07:00
|
|
|
* Get or create a content process for the given app descriptor,
|
|
|
|
* which may be null. This function will assign processes to app
|
|
|
|
* or non-app browsers by internal heuristics.
|
2012-07-13 14:10:20 -07:00
|
|
|
*
|
2012-08-08 19:58:06 -07:00
|
|
|
* Currently apps are given their own process, and browser tabs
|
|
|
|
* share processes.
|
2012-07-13 14:10:20 -07:00
|
|
|
*/
|
2012-08-08 19:58:06 -07:00
|
|
|
static TabParent* CreateBrowser(mozIApplication* aApp,
|
|
|
|
bool aIsBrowserFrame);
|
|
|
|
|
2011-08-02 12:35:42 -07:00
|
|
|
static void GetAll(nsTArray<ContentParent*>& aArray);
|
2009-08-12 09:18:08 -07:00
|
|
|
|
2009-09-02 17:18:27 -07:00
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIOBSERVER
|
2010-02-01 17:53:52 -08:00
|
|
|
NS_DECL_NSITHREADOBSERVER
|
2010-09-20 21:16:37 -07:00
|
|
|
NS_DECL_NSIDOMGEOPOSITIONCALLBACK
|
2009-09-02 17:18:27 -07:00
|
|
|
|
2012-07-17 11:27:27 -07:00
|
|
|
/** Notify that a tab was destroyed during normal operation. */
|
|
|
|
void NotifyTabDestroyed(PBrowserParent* aTab);
|
2009-11-11 00:34:08 -08:00
|
|
|
|
|
|
|
TestShellParent* CreateTestShell();
|
|
|
|
bool DestroyTestShell(TestShellParent* aTestShell);
|
2011-06-23 16:31:58 -07:00
|
|
|
TestShellParent* GetTestShellSingleton();
|
2009-08-12 09:18:08 -07:00
|
|
|
|
2010-03-29 13:29:45 -07:00
|
|
|
void ReportChildAlreadyBlocked();
|
2010-02-01 17:53:52 -08:00
|
|
|
bool RequestRunToCompletion();
|
|
|
|
|
2010-04-11 17:24:45 -07:00
|
|
|
bool IsAlive();
|
2012-07-17 11:27:27 -07:00
|
|
|
bool IsForApp();
|
2010-04-11 17:24:45 -07:00
|
|
|
|
2011-02-16 10:43:23 -08:00
|
|
|
void SetChildMemoryReporters(const InfallibleTArray<MemoryReport>& report);
|
|
|
|
|
2011-06-08 12:56:31 -07:00
|
|
|
GeckoChildProcessHost* Process() {
|
|
|
|
return mSubprocess;
|
|
|
|
}
|
|
|
|
|
2011-08-02 12:35:42 -07:00
|
|
|
bool NeedsPermissionsUpdate() {
|
|
|
|
return mSendPermissionUpdates;
|
|
|
|
}
|
|
|
|
|
2012-08-01 23:02:29 -07:00
|
|
|
BlobParent* GetOrCreateActorForBlob(nsIDOMBlob* aBlob);
|
|
|
|
|
2012-09-05 15:18:48 -07: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();
|
|
|
|
|
2010-02-01 17:53:52 -08:00
|
|
|
protected:
|
2012-09-17 01:37:20 -07:00
|
|
|
void OnChannelConnected(int32_t pid);
|
2010-02-01 17:53:52 -08:00
|
|
|
virtual void ActorDestroy(ActorDestroyReason why);
|
|
|
|
|
2009-08-12 09:18:08 -07:00
|
|
|
private:
|
2012-08-29 05:24:48 -07:00
|
|
|
typedef base::ChildPrivileges ChildOSPrivileges;
|
|
|
|
|
2012-07-13 14:10:20 -07:00
|
|
|
static nsDataHashtable<nsStringHashKey, ContentParent*> *gAppContentParents;
|
|
|
|
static nsTArray<ContentParent*>* gNonAppContentParents;
|
2012-04-19 17:13:20 -07:00
|
|
|
static nsTArray<ContentParent*>* gPrivateContent;
|
2009-08-12 09:18:08 -07:00
|
|
|
|
2012-08-15 18:46:03 -07:00
|
|
|
static void PreallocateAppProcess();
|
|
|
|
static void DelayedPreallocateAppProcess();
|
|
|
|
static void ScheduleDelayedPreallocateAppProcess();
|
|
|
|
static already_AddRefed<ContentParent> MaybeTakePreallocatedAppProcess();
|
|
|
|
|
2009-08-12 11:31:48 -07:00
|
|
|
// Hide the raw constructor methods since we don't want client code
|
|
|
|
// using them.
|
2010-07-19 11:33:33 -07:00
|
|
|
using PContentParent::SendPBrowserConstructor;
|
|
|
|
using PContentParent::SendPTestShellConstructor;
|
2009-08-12 09:18:08 -07:00
|
|
|
|
2012-08-29 05:24:48 -07:00
|
|
|
ContentParent(const nsAString& aAppManifestURL, bool aIsForBrowser,
|
|
|
|
ChildOSPrivileges aOSPrivileges = base::PRIVILEGES_DEFAULT);
|
2010-07-19 11:33:33 -07:00
|
|
|
virtual ~ContentParent();
|
2009-08-12 09:18:08 -07:00
|
|
|
|
2010-12-26 12:03:52 -08:00
|
|
|
void Init();
|
|
|
|
|
2012-08-15 18:46:03 -07:00
|
|
|
// Transform a pre-allocated app process into a "real" app
|
|
|
|
// process, for the specified manifest URL.
|
|
|
|
void SetManifestFromPreallocated(const nsAString& aAppManifestURL);
|
|
|
|
|
2012-07-17 11:27:27 -07: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.
|
|
|
|
*/
|
2012-08-15 18:46:03 -07:00
|
|
|
void ShutDownProcess();
|
2012-07-17 11:27:27 -07:00
|
|
|
|
2012-08-29 05:24:48 -07:00
|
|
|
PCompositorParent*
|
|
|
|
AllocPCompositor(mozilla::ipc::Transport* aTransport,
|
|
|
|
base::ProcessId aOtherProcess) MOZ_OVERRIDE;
|
|
|
|
PImageBridgeParent*
|
|
|
|
AllocPImageBridge(mozilla::ipc::Transport* aTransport,
|
|
|
|
base::ProcessId aOtherProcess) MOZ_OVERRIDE;
|
2012-07-17 16:59:45 -07:00
|
|
|
|
2012-09-04 17:36:16 -07:00
|
|
|
virtual bool RecvGetProcessAttributes(uint64_t* aId,
|
|
|
|
bool* aStartBackground,
|
|
|
|
bool* aIsForApp,
|
|
|
|
bool* aIsForBrowser) MOZ_OVERRIDE;
|
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
virtual PBrowserParent* AllocPBrowser(const uint32_t& aChromeFlags,
|
2012-08-08 19:58:06 -07:00
|
|
|
const bool& aIsBrowserElement,
|
|
|
|
const AppId& aApp);
|
2010-07-19 11:33:33 -07:00
|
|
|
virtual bool DeallocPBrowser(PBrowserParent* frame);
|
2009-08-12 09:18:08 -07:00
|
|
|
|
2012-06-19 16:14:39 -07:00
|
|
|
virtual PDeviceStorageRequestParent* AllocPDeviceStorageRequest(const DeviceStorageParams&);
|
|
|
|
virtual bool DeallocPDeviceStorageRequest(PDeviceStorageRequestParent*);
|
|
|
|
|
2012-08-01 23:02:29 -07:00
|
|
|
virtual PBlobParent* AllocPBlob(const BlobConstructorParams& aParams);
|
|
|
|
virtual bool DeallocPBlob(PBlobParent*);
|
|
|
|
|
2011-06-08 12:56:31 -07:00
|
|
|
virtual PCrashReporterParent* AllocPCrashReporter(const NativeThreadId& tid,
|
2012-08-22 08:56:38 -07:00
|
|
|
const uint32_t& processType);
|
2010-11-24 06:15:03 -08:00
|
|
|
virtual bool DeallocPCrashReporter(PCrashReporterParent* crashreporter);
|
2011-06-08 12:56:31 -07:00
|
|
|
virtual bool RecvPCrashReporterConstructor(PCrashReporterParent* actor,
|
|
|
|
const NativeThreadId& tid,
|
2012-08-22 08:56:38 -07:00
|
|
|
const uint32_t& processType);
|
2010-11-24 06:15:03 -08:00
|
|
|
|
2012-07-06 11:15:45 -07:00
|
|
|
virtual PHalParent* AllocPHal() MOZ_OVERRIDE;
|
|
|
|
virtual bool DeallocPHal(PHalParent*) MOZ_OVERRIDE;
|
2011-10-05 15:15:45 -07:00
|
|
|
|
2012-07-14 04:24:20 -07:00
|
|
|
virtual PIndexedDBParent* AllocPIndexedDB();
|
|
|
|
|
|
|
|
virtual bool DeallocPIndexedDB(PIndexedDBParent* aActor);
|
|
|
|
|
|
|
|
virtual bool
|
|
|
|
RecvPIndexedDBConstructor(PIndexedDBParent* aActor);
|
|
|
|
|
2011-02-16 10:43:23 -08:00
|
|
|
virtual PMemoryReportRequestParent* AllocPMemoryReportRequest();
|
|
|
|
virtual bool DeallocPMemoryReportRequest(PMemoryReportRequestParent* actor);
|
|
|
|
|
2009-09-22 10:31:11 -07:00
|
|
|
virtual PTestShellParent* AllocPTestShell();
|
|
|
|
virtual bool DeallocPTestShell(PTestShellParent* shell);
|
2009-08-12 11:31:48 -07:00
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
virtual PAudioParent* AllocPAudio(const int32_t&,
|
|
|
|
const int32_t&,
|
|
|
|
const int32_t&);
|
2010-11-16 20:14:19 -08:00
|
|
|
virtual bool DeallocPAudio(PAudioParent*);
|
|
|
|
|
2009-09-22 10:31:11 -07:00
|
|
|
virtual PNeckoParent* AllocPNecko();
|
|
|
|
virtual bool DeallocPNecko(PNeckoParent* necko);
|
2009-08-18 12:05:15 -07:00
|
|
|
|
2010-09-15 15:55:08 -07:00
|
|
|
virtual PExternalHelperAppParent* AllocPExternalHelperApp(
|
2012-08-23 12:33:46 -07:00
|
|
|
const OptionalURIParams& aUri,
|
2010-09-15 15:55:08 -07:00
|
|
|
const nsCString& aMimeContentType,
|
|
|
|
const nsCString& aContentDisposition,
|
|
|
|
const bool& aForceSave,
|
2012-08-22 08:56:38 -07:00
|
|
|
const int64_t& aContentLength,
|
2012-08-23 12:33:46 -07:00
|
|
|
const OptionalURIParams& aReferrer);
|
2010-09-15 15:55:08 -07:00
|
|
|
virtual bool DeallocPExternalHelperApp(PExternalHelperAppParent* aService);
|
|
|
|
|
2011-11-20 14:40:53 -08:00
|
|
|
virtual PSmsParent* AllocPSms();
|
|
|
|
virtual bool DeallocPSms(PSmsParent*);
|
|
|
|
|
2010-11-18 17:15:23 -08:00
|
|
|
virtual PStorageParent* AllocPStorage(const StorageConstructData& aData);
|
|
|
|
virtual bool DeallocPStorage(PStorageParent* aActor);
|
|
|
|
|
2012-09-13 09:37:14 -07:00
|
|
|
virtual PBluetoothParent* AllocPBluetooth();
|
|
|
|
virtual bool DeallocPBluetooth(PBluetoothParent* aActor);
|
|
|
|
virtual bool RecvPBluetoothConstructor(PBluetoothParent* aActor);
|
|
|
|
|
2012-08-22 13:00:21 -07:00
|
|
|
virtual bool RecvReadPrefsArray(InfallibleTArray<PrefSetting>* aPrefs);
|
2011-01-12 20:04:42 -08:00
|
|
|
virtual bool RecvReadFontList(InfallibleTArray<FontListEntry>* retValue);
|
2010-05-28 11:09:15 -07:00
|
|
|
|
2010-11-08 18:49:00 -08:00
|
|
|
virtual bool RecvReadPermissions(InfallibleTArray<IPC::Permission>* aPermissions);
|
2011-04-29 16:46:20 -07:00
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
virtual bool RecvSetClipboardText(const nsString& text, const bool& isPrivateData, const int32_t& whichClipboard);
|
|
|
|
virtual bool RecvGetClipboardText(const int32_t& whichClipboard, nsString* text);
|
2011-02-28 21:36:43 -08:00
|
|
|
virtual bool RecvEmptyClipboard();
|
2011-09-28 23:19:26 -07:00
|
|
|
virtual bool RecvClipboardHasText(bool* hasText);
|
2010-05-25 17:13:47 -07:00
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
virtual bool RecvGetSystemColors(const uint32_t& colorsCount, InfallibleTArray<uint32_t>* colors);
|
|
|
|
virtual bool RecvGetIconForExtension(const nsCString& aFileExt, const uint32_t& aIconSize, InfallibleTArray<uint8_t>* bits);
|
2011-09-28 23:19:26 -07:00
|
|
|
virtual bool RecvGetShowPasswordSetting(bool* showPassword);
|
2011-03-30 11:04:41 -07:00
|
|
|
|
2012-08-23 12:33:46 -07:00
|
|
|
virtual bool RecvStartVisitedQuery(const URIParams& uri);
|
2010-07-02 08:50:41 -07:00
|
|
|
|
2012-08-23 12:33:46 -07:00
|
|
|
virtual bool RecvVisitURI(const URIParams& uri,
|
|
|
|
const OptionalURIParams& referrer,
|
2012-08-22 08:56:38 -07:00
|
|
|
const uint32_t& flags);
|
2010-07-02 08:50:24 -07:00
|
|
|
|
2012-08-23 12:33:46 -07:00
|
|
|
virtual bool RecvSetURITitle(const URIParams& uri,
|
2010-07-02 08:53:42 -07:00
|
|
|
const nsString& title);
|
2010-10-20 08:19:24 -07:00
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
virtual bool RecvShowFilePicker(const int16_t& mode,
|
|
|
|
const int16_t& selectedType,
|
2011-09-28 23:19:26 -07:00
|
|
|
const bool& addToRecentDocs,
|
2010-10-20 08:19:24 -07:00
|
|
|
const nsString& title,
|
|
|
|
const nsString& defaultFile,
|
|
|
|
const nsString& defaultExtension,
|
2010-11-08 18:49:00 -08:00
|
|
|
const InfallibleTArray<nsString>& filters,
|
|
|
|
const InfallibleTArray<nsString>& filterNames,
|
|
|
|
InfallibleTArray<nsString>* files,
|
2012-08-22 08:56:38 -07:00
|
|
|
int16_t* retValue,
|
2010-10-20 08:19:24 -07:00
|
|
|
nsresult* result);
|
|
|
|
|
2010-09-15 09:44:57 -07:00
|
|
|
virtual bool RecvShowAlertNotification(const nsString& aImageUrl, const nsString& aTitle,
|
2011-09-28 23:19:26 -07:00
|
|
|
const nsString& aText, const bool& aTextClickable,
|
2010-09-15 09:44:57 -07:00
|
|
|
const nsString& aCookie, const nsString& aName);
|
2010-07-02 08:53:42 -07:00
|
|
|
|
2012-08-23 12:33:46 -07:00
|
|
|
virtual bool RecvLoadURIExternal(const URIParams& uri);
|
2010-08-10 10:14:45 -07:00
|
|
|
|
2012-08-01 23:02:29 -07:00
|
|
|
virtual bool RecvSyncMessage(const nsString& aMsg,
|
|
|
|
const ClonedMessageData& aData,
|
2010-11-08 18:49:00 -08:00
|
|
|
InfallibleTArray<nsString>* aRetvals);
|
2012-08-01 23:02:29 -07:00
|
|
|
virtual bool RecvAsyncMessage(const nsString& aMsg,
|
|
|
|
const ClonedMessageData& aData);
|
2010-08-31 11:58:35 -07:00
|
|
|
|
2010-11-05 10:43:13 -07:00
|
|
|
virtual bool RecvAddGeolocationListener();
|
|
|
|
virtual bool RecvRemoveGeolocationListener();
|
2010-09-20 21:16:37 -07:00
|
|
|
|
2010-09-23 18:39:32 -07:00
|
|
|
virtual bool RecvConsoleMessage(const nsString& aMessage);
|
|
|
|
virtual bool RecvScriptError(const nsString& aMessage,
|
|
|
|
const nsString& aSourceName,
|
|
|
|
const nsString& aSourceLine,
|
2012-08-22 08:56:38 -07:00
|
|
|
const uint32_t& aLineNumber,
|
|
|
|
const uint32_t& aColNumber,
|
|
|
|
const uint32_t& aFlags,
|
2010-09-23 18:39:32 -07:00
|
|
|
const nsCString& aCategory);
|
|
|
|
|
2012-04-19 17:13:20 -07:00
|
|
|
virtual bool RecvPrivateDocShellsExist(const bool& aExist);
|
2012-08-01 23:32:04 -07:00
|
|
|
|
2011-07-12 23:52:31 -07:00
|
|
|
virtual void ProcessingError(Result what) MOZ_OVERRIDE;
|
|
|
|
|
2009-09-02 17:18:27 -07:00
|
|
|
GeckoChildProcessHost* mSubprocess;
|
2012-08-29 05:24:48 -07:00
|
|
|
ChildOSPrivileges mOSPrivileges;
|
2010-02-01 17:53:52 -08:00
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t mGeolocationWatchID;
|
2010-02-01 17:53:52 -08:00
|
|
|
int mRunToCompletionDepth;
|
2010-03-29 13:29:45 -07:00
|
|
|
bool mShouldCallUnblockChild;
|
2010-02-01 17:53:52 -08:00
|
|
|
|
2011-02-16 10:43:23 -08:00
|
|
|
// This is a cache of all of the memory reporters
|
|
|
|
// registered in the child process. To update this, one
|
|
|
|
// can broadcast the topic "child-memory-reporter-request" using
|
|
|
|
// the nsIObserverService.
|
|
|
|
nsCOMArray<nsIMemoryReporter> mMemoryReporters;
|
|
|
|
|
2012-07-13 14:10:20 -07:00
|
|
|
const nsString mAppManifestURL;
|
2011-08-02 12:57:48 -07:00
|
|
|
nsRefPtr<nsFrameMessageManager> mMessageManager;
|
2011-06-08 12:56:31 -07:00
|
|
|
|
2012-09-04 17:36:16 -07:00
|
|
|
bool mIsAlive;
|
|
|
|
bool mSendPermissionUpdates;
|
|
|
|
bool mIsForBrowser;
|
|
|
|
|
2011-06-08 12:56:31 -07:00
|
|
|
friend class CrashReporterParent;
|
2009-08-12 09:18:08 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif
|