2009-08-18 19:05:15 +00: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 11:12:37 +00: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 16:18:08 +00:00
|
|
|
|
2010-07-19 18:33:33 +00:00
|
|
|
#ifndef mozilla_dom_ContentChild_h
|
|
|
|
#define mozilla_dom_ContentChild_h
|
2009-08-12 16:18:08 +00:00
|
|
|
|
2011-12-17 21:45:29 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
2010-07-19 18:33:33 +00:00
|
|
|
#include "mozilla/dom/PContentChild.h"
|
Bug 802366 - The main event: Let a browser process inherit its app's id. r=bz,cjones
The main bug fixed here is that in half of our interfaces, we use "is browser frame/element" to mean "browser or app", and in the other half, we use it to mean "is browser not app".
There's a related, functional bug also fixed here, which is that a browser process doesn't inherit its parent's app-id. This causes problems e.g. for IndexedDB: If a browser inside an app uses IndexedDB, the DB should have the app's app-id.
I also modified Tab{Parent,Child} and nsFrameLoader to call "app" "ownOrContainingApp", to emphasize that we might have inherited the app from a parent process. I left nsIDocShell::appId alone, because changing that would have necessitated changing nsILoadGroup and therefore a /lot/ of users in Necko; it's also not clear it would have clarified anything in those cases.
2012-11-10 18:32:37 +00:00
|
|
|
#include "mozilla/dom/TabContext.h"
|
2012-08-02 06:02:29 +00:00
|
|
|
#include "mozilla/dom/ipc/Blob.h"
|
2009-08-12 16:18:08 +00:00
|
|
|
|
2009-08-25 23:07:22 +00:00
|
|
|
#include "nsTArray.h"
|
2010-09-24 01:39:32 +00:00
|
|
|
#include "nsIConsoleListener.h"
|
2009-08-25 23:07:22 +00:00
|
|
|
|
2010-03-11 05:33:00 +00:00
|
|
|
struct ChromePackage;
|
2012-08-02 06:02:29 +00:00
|
|
|
class nsIDOMBlob;
|
2010-07-21 18:42:32 +00:00
|
|
|
class nsIObserver;
|
2010-03-11 05:33:00 +00:00
|
|
|
struct ResourceMapping;
|
|
|
|
struct OverrideMapping;
|
|
|
|
|
2009-08-12 16:18:08 +00:00
|
|
|
namespace mozilla {
|
2012-07-17 23:59:45 +00:00
|
|
|
|
2012-08-23 19:33:46 +00:00
|
|
|
namespace ipc {
|
|
|
|
class OptionalURIParams;
|
|
|
|
class URIParams;
|
|
|
|
}// namespace ipc
|
|
|
|
|
2013-07-03 07:24:32 +00:00
|
|
|
namespace jsipc {
|
|
|
|
class JavaScriptChild;
|
|
|
|
}
|
|
|
|
|
2012-07-17 23:59:45 +00:00
|
|
|
namespace layers {
|
|
|
|
class PCompositorChild;
|
2012-08-23 19:33:46 +00:00
|
|
|
} // namespace layers
|
2012-07-17 23:59:45 +00:00
|
|
|
|
2009-08-12 16:18:08 +00:00
|
|
|
namespace dom {
|
|
|
|
|
2010-09-15 16:44:57 +00:00
|
|
|
class AlertObserver;
|
2010-07-21 18:42:32 +00:00
|
|
|
class PrefObserver;
|
2010-09-24 01:39:32 +00:00
|
|
|
class ConsoleListener;
|
2010-11-19 01:15:23 +00:00
|
|
|
class PStorageChild;
|
2012-08-02 06:02:29 +00:00
|
|
|
class ClonedMessageData;
|
2010-07-21 18:42:32 +00:00
|
|
|
|
2010-07-19 18:33:33 +00:00
|
|
|
class ContentChild : public PContentChild
|
2009-08-12 16:18:08 +00:00
|
|
|
{
|
2012-08-02 06:02:29 +00:00
|
|
|
typedef mozilla::dom::ClonedMessageData ClonedMessageData;
|
2012-08-23 19:33:46 +00:00
|
|
|
typedef mozilla::ipc::OptionalURIParams OptionalURIParams;
|
|
|
|
typedef mozilla::ipc::URIParams URIParams;
|
2012-07-17 23:59:45 +00:00
|
|
|
|
2009-08-12 16:18:08 +00:00
|
|
|
public:
|
2010-07-19 18:33:33 +00:00
|
|
|
ContentChild();
|
|
|
|
virtual ~ContentChild();
|
2013-07-10 17:07:51 +00:00
|
|
|
nsrefcnt AddRef() { return 1; }
|
|
|
|
nsrefcnt Release() { return 1; }
|
2009-08-12 16:18:08 +00:00
|
|
|
|
2011-10-04 20:31:00 +00:00
|
|
|
struct AppInfo
|
|
|
|
{
|
|
|
|
nsCString version;
|
|
|
|
nsCString buildID;
|
2013-04-22 16:41:59 +00:00
|
|
|
nsCString name;
|
|
|
|
nsCString UAName;
|
2011-10-04 20:31:00 +00:00
|
|
|
};
|
|
|
|
|
2009-10-27 21:52:37 +00:00
|
|
|
bool Init(MessageLoop* aIOLoop,
|
|
|
|
base::ProcessHandle aParentHandle,
|
|
|
|
IPC::Channel* aChannel);
|
2010-09-24 01:39:32 +00:00
|
|
|
void InitXPCOM();
|
2009-08-12 16:18:08 +00:00
|
|
|
|
2010-07-19 18:33:33 +00:00
|
|
|
static ContentChild* GetSingleton() {
|
2009-08-13 00:32:50 +00:00
|
|
|
return sSingleton;
|
|
|
|
}
|
|
|
|
|
2011-10-04 20:31:00 +00:00
|
|
|
const AppInfo& GetAppInfo() {
|
|
|
|
return mAppInfo;
|
|
|
|
}
|
|
|
|
|
2012-10-05 21:54:54 +00:00
|
|
|
void SetProcessName(const nsAString& aName);
|
|
|
|
const void GetProcessName(nsAString& aName);
|
|
|
|
|
2012-08-29 12:24:48 +00:00
|
|
|
PCompositorChild*
|
2013-07-08 15:48:39 +00:00
|
|
|
AllocPCompositorChild(mozilla::ipc::Transport* aTransport,
|
|
|
|
base::ProcessId aOtherProcess) MOZ_OVERRIDE;
|
2012-08-29 12:24:48 +00:00
|
|
|
PImageBridgeChild*
|
2013-07-08 15:48:39 +00:00
|
|
|
AllocPImageBridgeChild(mozilla::ipc::Transport* aTransport,
|
|
|
|
base::ProcessId aOtherProcess) MOZ_OVERRIDE;
|
2010-03-24 10:47:18 +00:00
|
|
|
|
2013-01-17 20:06:36 +00:00
|
|
|
virtual bool RecvSetProcessPrivileges(const ChildPrivileges& aPrivs);
|
|
|
|
|
2013-07-08 15:48:39 +00:00
|
|
|
virtual PBrowserChild* AllocPBrowserChild(const IPCTabContext &aContext,
|
|
|
|
const uint32_t &chromeFlags);
|
|
|
|
virtual bool DeallocPBrowserChild(PBrowserChild*);
|
2009-08-12 16:18:08 +00:00
|
|
|
|
2013-07-08 15:48:39 +00:00
|
|
|
virtual PDeviceStorageRequestChild* AllocPDeviceStorageRequestChild(const DeviceStorageParams&);
|
|
|
|
virtual bool DeallocPDeviceStorageRequestChild(PDeviceStorageRequestChild*);
|
2012-06-19 23:14:39 +00:00
|
|
|
|
2013-07-08 15:48:39 +00:00
|
|
|
virtual PBlobChild* AllocPBlobChild(const BlobConstructorParams& aParams);
|
|
|
|
virtual bool DeallocPBlobChild(PBlobChild*);
|
2012-08-02 06:02:29 +00:00
|
|
|
|
2011-06-08 19:56:31 +00:00
|
|
|
virtual PCrashReporterChild*
|
2013-07-08 15:48:39 +00:00
|
|
|
AllocPCrashReporterChild(const mozilla::dom::NativeThreadId& id,
|
|
|
|
const uint32_t& processType);
|
2011-06-08 19:56:31 +00:00
|
|
|
virtual bool
|
2013-07-08 15:48:39 +00:00
|
|
|
DeallocPCrashReporterChild(PCrashReporterChild*);
|
2010-11-24 14:15:03 +00:00
|
|
|
|
2013-07-08 15:48:39 +00:00
|
|
|
virtual PHalChild* AllocPHalChild() MOZ_OVERRIDE;
|
|
|
|
virtual bool DeallocPHalChild(PHalChild*) MOZ_OVERRIDE;
|
2011-10-05 22:15:45 +00:00
|
|
|
|
2013-07-08 15:48:39 +00:00
|
|
|
virtual PIndexedDBChild* AllocPIndexedDBChild();
|
|
|
|
virtual bool DeallocPIndexedDBChild(PIndexedDBChild* aActor);
|
2012-07-14 11:24:20 +00:00
|
|
|
|
2011-02-16 18:43:23 +00:00
|
|
|
virtual PMemoryReportRequestChild*
|
2013-07-08 15:48:39 +00:00
|
|
|
AllocPMemoryReportRequestChild();
|
2011-02-16 18:43:23 +00:00
|
|
|
|
|
|
|
virtual bool
|
2013-07-08 15:48:39 +00:00
|
|
|
DeallocPMemoryReportRequestChild(PMemoryReportRequestChild* actor);
|
2011-02-16 18:43:23 +00:00
|
|
|
|
|
|
|
virtual bool
|
|
|
|
RecvPMemoryReportRequestConstructor(PMemoryReportRequestChild* child);
|
|
|
|
|
2012-12-06 03:01:58 +00:00
|
|
|
virtual bool
|
|
|
|
RecvAudioChannelNotify();
|
|
|
|
|
2012-10-03 01:19:11 +00:00
|
|
|
virtual bool
|
2013-03-28 03:31:26 +00:00
|
|
|
RecvDumpMemoryInfoToTempDir(const nsString& aIdentifier,
|
2012-10-03 01:19:11 +00:00
|
|
|
const bool& aMinimizeMemoryUsage,
|
|
|
|
const bool& aDumpChildProcesses);
|
2012-10-16 02:12:14 +00:00
|
|
|
virtual bool
|
|
|
|
RecvDumpGCAndCCLogsToFile(const nsString& aIdentifier,
|
2013-07-08 17:20:39 +00:00
|
|
|
const bool& aDumpAllTraces,
|
2012-10-16 02:12:14 +00:00
|
|
|
const bool& aDumpChildProcesses);
|
2012-10-03 01:19:11 +00:00
|
|
|
|
2013-07-08 15:48:39 +00:00
|
|
|
virtual PTestShellChild* AllocPTestShellChild();
|
|
|
|
virtual bool DeallocPTestShellChild(PTestShellChild*);
|
2009-11-06 20:43:39 +00:00
|
|
|
virtual bool RecvPTestShellConstructor(PTestShellChild*);
|
2013-07-03 07:24:32 +00:00
|
|
|
jsipc::JavaScriptChild *GetCPOWManager();
|
2009-08-25 23:07:22 +00:00
|
|
|
|
2013-07-08 15:48:39 +00:00
|
|
|
virtual PNeckoChild* AllocPNeckoChild();
|
|
|
|
virtual bool DeallocPNeckoChild(PNeckoChild*);
|
2009-08-18 19:05:15 +00:00
|
|
|
|
2013-07-08 15:48:39 +00:00
|
|
|
virtual PExternalHelperAppChild *AllocPExternalHelperAppChild(
|
2012-08-23 19:33:46 +00:00
|
|
|
const OptionalURIParams& uri,
|
2010-09-15 22:55:08 +00:00
|
|
|
const nsCString& aMimeContentType,
|
|
|
|
const nsCString& aContentDisposition,
|
|
|
|
const bool& aForceSave,
|
2012-08-22 15:56:38 +00:00
|
|
|
const int64_t& aContentLength,
|
2012-08-23 19:33:46 +00:00
|
|
|
const OptionalURIParams& aReferrer);
|
2013-07-08 15:48:39 +00:00
|
|
|
virtual bool DeallocPExternalHelperAppChild(PExternalHelperAppChild *aService);
|
2010-09-15 22:55:08 +00:00
|
|
|
|
2013-07-08 15:48:39 +00:00
|
|
|
virtual PSmsChild* AllocPSmsChild();
|
|
|
|
virtual bool DeallocPSmsChild(PSmsChild*);
|
2011-11-20 22:40:53 +00:00
|
|
|
|
2013-07-08 15:48:39 +00:00
|
|
|
virtual PStorageChild* AllocPStorageChild();
|
|
|
|
virtual bool DeallocPStorageChild(PStorageChild* aActor);
|
2010-11-19 01:15:23 +00:00
|
|
|
|
2013-07-08 15:48:39 +00:00
|
|
|
virtual PBluetoothChild* AllocPBluetoothChild();
|
|
|
|
virtual bool DeallocPBluetoothChild(PBluetoothChild* aActor);
|
2012-09-13 16:37:14 +00:00
|
|
|
|
2013-07-08 15:48:39 +00:00
|
|
|
virtual PSpeechSynthesisChild* AllocPSpeechSynthesisChild();
|
|
|
|
virtual bool DeallocPSpeechSynthesisChild(PSpeechSynthesisChild* aActor);
|
2013-04-03 22:13:17 +00:00
|
|
|
|
2010-11-09 02:49:00 +00:00
|
|
|
virtual bool RecvRegisterChrome(const InfallibleTArray<ChromePackage>& packages,
|
|
|
|
const InfallibleTArray<ResourceMapping>& resources,
|
2011-01-11 21:34:31 +00:00
|
|
|
const InfallibleTArray<OverrideMapping>& overrides,
|
|
|
|
const nsCString& locale);
|
2010-03-11 05:33:00 +00:00
|
|
|
|
2013-07-08 15:48:39 +00:00
|
|
|
virtual mozilla::jsipc::PJavaScriptChild* AllocPJavaScriptChild();
|
|
|
|
virtual bool DeallocPJavaScriptChild(mozilla::jsipc::PJavaScriptChild*);
|
2013-07-03 07:24:32 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
virtual bool RecvSetOffline(const bool& offline);
|
2010-05-11 12:44:12 +00:00
|
|
|
|
2012-08-23 19:33:46 +00:00
|
|
|
virtual bool RecvNotifyVisited(const URIParams& aURI);
|
2010-09-15 16:44:57 +00:00
|
|
|
// auto remove when alertfinished is received.
|
|
|
|
nsresult AddRemoteAlertObserver(const nsString& aData, nsIObserver* aObserver);
|
|
|
|
|
2012-08-22 20:00:21 +00:00
|
|
|
virtual bool RecvPreferenceUpdate(const PrefSetting& aPref);
|
2010-10-19 20:35:08 +00:00
|
|
|
|
2010-09-15 16:44:57 +00:00
|
|
|
virtual bool RecvNotifyAlertsObserver(const nsCString& aType, const nsString& aData);
|
|
|
|
|
2012-08-02 06:02:29 +00:00
|
|
|
virtual bool RecvAsyncMessage(const nsString& aMsg,
|
2013-07-10 22:05:39 +00:00
|
|
|
const ClonedMessageData& aData,
|
|
|
|
const InfallibleTArray<CpowEntry>& aCpows);
|
2010-05-26 00:13:47 +00:00
|
|
|
|
2010-09-21 04:16:37 +00:00
|
|
|
virtual bool RecvGeolocationUpdate(const GeoPosition& somewhere);
|
|
|
|
|
2010-10-09 18:07:38 +00:00
|
|
|
virtual bool RecvAddPermission(const IPC::Permission& permission);
|
|
|
|
|
2010-11-24 18:22:40 +00:00
|
|
|
virtual bool RecvScreenSizeChanged(const gfxIntSize &size);
|
2010-12-11 22:36:08 +00:00
|
|
|
|
|
|
|
virtual bool RecvFlushMemory(const nsString& reason);
|
|
|
|
|
2011-07-21 04:37:32 +00:00
|
|
|
virtual bool RecvActivateA11y();
|
|
|
|
|
2011-09-13 17:53:51 +00:00
|
|
|
virtual bool RecvGarbageCollect();
|
|
|
|
virtual bool RecvCycleCollect();
|
|
|
|
|
2013-04-22 16:41:59 +00:00
|
|
|
virtual bool RecvAppInfo(const nsCString& version, const nsCString& buildID,
|
|
|
|
const nsCString& name, const nsCString& UAName);
|
2011-10-04 20:31:00 +00:00
|
|
|
|
2012-04-20 00:13:20 +00:00
|
|
|
virtual bool RecvLastPrivateDocShellDestroyed();
|
|
|
|
|
2013-05-11 09:10:18 +00:00
|
|
|
virtual bool RecvFilePathUpdate(const nsString& aStorageType,
|
|
|
|
const nsString& aStorageName,
|
|
|
|
const nsString& aPath,
|
|
|
|
const nsCString& aReason);
|
2012-12-15 00:01:34 +00:00
|
|
|
virtual bool RecvFileSystemUpdate(const nsString& aFsName,
|
2013-05-11 09:10:18 +00:00
|
|
|
const nsString& aVolumeName,
|
2012-12-15 00:01:34 +00:00
|
|
|
const int32_t& aState,
|
|
|
|
const int32_t& aMountGeneration);
|
2012-08-02 06:32:04 +00:00
|
|
|
|
2013-04-26 00:53:26 +00:00
|
|
|
virtual bool RecvNotifyProcessPriorityChanged(const hal::ProcessPriority& aPriority);
|
|
|
|
virtual bool RecvMinimizeMemoryUsage();
|
|
|
|
virtual bool RecvCancelMinimizeMemoryUsage();
|
|
|
|
|
2010-11-24 18:22:40 +00:00
|
|
|
#ifdef ANDROID
|
|
|
|
gfxIntSize GetScreenSize() { return mScreenSize; }
|
|
|
|
#endif
|
|
|
|
|
2011-04-29 23:46:20 +00:00
|
|
|
// Get the directory for IndexedDB files. We query the parent for this and
|
|
|
|
// cache the value
|
|
|
|
nsString &GetIndexedDBPath();
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
uint64_t GetID() { return mID; }
|
2011-09-30 07:00:48 +00:00
|
|
|
|
2013-01-11 11:19:02 +00:00
|
|
|
bool IsForApp() { return mIsForApp; }
|
|
|
|
bool IsForBrowser() { return mIsForBrowser; }
|
|
|
|
|
2012-08-02 06:02:29 +00:00
|
|
|
BlobChild* GetOrCreateActorForBlob(nsIDOMBlob* aBlob);
|
|
|
|
|
2013-02-23 04:24:28 +00:00
|
|
|
protected:
|
|
|
|
virtual bool RecvPBrowserConstructor(PBrowserChild* actor,
|
|
|
|
const IPCTabContext& context,
|
|
|
|
const uint32_t& chromeFlags);
|
|
|
|
|
2009-12-07 06:03:49 +00:00
|
|
|
private:
|
2012-07-17 23:59:45 +00:00
|
|
|
virtual void ActorDestroy(ActorDestroyReason why) MOZ_OVERRIDE;
|
2009-12-07 06:03:49 +00:00
|
|
|
|
2012-07-17 23:59:45 +00:00
|
|
|
virtual void ProcessingError(Result what) MOZ_OVERRIDE;
|
2010-08-20 23:24:40 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Exit *now*. Do not shut down XPCOM, do not pass Go, do not run
|
|
|
|
* static destructors, do not collect $200.
|
|
|
|
*/
|
2011-12-17 21:45:29 +00:00
|
|
|
MOZ_NORETURN void QuickExit();
|
2010-08-20 23:24:40 +00:00
|
|
|
|
2010-11-09 02:49:00 +00:00
|
|
|
InfallibleTArray<nsAutoPtr<AlertObserver> > mAlertObservers;
|
2010-09-24 01:39:32 +00:00
|
|
|
nsRefPtr<ConsoleListener> mConsoleListener;
|
2009-08-13 00:32:50 +00:00
|
|
|
|
2011-09-30 07:00:48 +00:00
|
|
|
/**
|
|
|
|
* An ID unique to the process containing our corresponding
|
|
|
|
* content parent.
|
|
|
|
*
|
|
|
|
* We expect our content parent to set this ID immediately after opening a
|
|
|
|
* channel to us.
|
|
|
|
*/
|
2012-08-22 15:56:38 +00:00
|
|
|
uint64_t mID;
|
2011-09-30 07:00:48 +00:00
|
|
|
|
2012-04-25 16:35:58 +00:00
|
|
|
AppInfo mAppInfo;
|
|
|
|
|
2012-08-07 07:06:29 +00:00
|
|
|
#ifdef ANDROID
|
|
|
|
gfxIntSize mScreenSize;
|
|
|
|
#endif
|
|
|
|
|
2012-08-23 10:23:43 +00:00
|
|
|
bool mIsForApp;
|
|
|
|
bool mIsForBrowser;
|
2012-10-05 21:54:54 +00:00
|
|
|
nsString mProcessName;
|
2013-04-26 00:53:26 +00:00
|
|
|
nsWeakPtr mMemoryMinimizerRunnable;
|
2012-08-23 10:23:43 +00:00
|
|
|
|
2010-07-21 18:42:32 +00:00
|
|
|
static ContentChild* sSingleton;
|
2010-05-26 00:13:47 +00:00
|
|
|
|
2010-07-19 18:33:33 +00:00
|
|
|
DISALLOW_EVIL_CONSTRUCTORS(ContentChild);
|
2009-08-12 16:18:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif
|