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_ContentChild_h
|
|
|
|
#define mozilla_dom_ContentChild_h
|
2009-08-12 20:18:08 +04:00
|
|
|
|
2011-12-18 01:45:29 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2010-07-19 22:33:33 +04:00
|
|
|
#include "mozilla/dom/PContentChild.h"
|
2009-08-12 20:18:08 +04:00
|
|
|
|
2009-08-26 03:07:22 +04:00
|
|
|
#include "nsTArray.h"
|
2010-09-24 05:39:32 +04:00
|
|
|
#include "nsIConsoleListener.h"
|
2009-08-26 03:07:22 +04:00
|
|
|
|
2010-03-11 08:33:00 +03:00
|
|
|
struct ChromePackage;
|
2010-07-21 22:42:32 +04:00
|
|
|
class nsIObserver;
|
2010-03-11 08:33:00 +03:00
|
|
|
struct ResourceMapping;
|
|
|
|
struct OverrideMapping;
|
|
|
|
|
2009-08-12 20:18:08 +04:00
|
|
|
namespace mozilla {
|
2012-07-18 03:59:45 +04:00
|
|
|
|
|
|
|
namespace layers {
|
|
|
|
class PCompositorChild;
|
|
|
|
}
|
|
|
|
|
2009-08-12 20:18:08 +04:00
|
|
|
namespace dom {
|
|
|
|
|
2010-09-15 20:44:57 +04:00
|
|
|
class AlertObserver;
|
2010-07-21 22:42:32 +04:00
|
|
|
class PrefObserver;
|
2010-09-24 05:39:32 +04:00
|
|
|
class ConsoleListener;
|
2010-11-19 04:15:23 +03:00
|
|
|
class PStorageChild;
|
2010-07-21 22:42:32 +04:00
|
|
|
|
2010-07-19 22:33:33 +04:00
|
|
|
class ContentChild : public PContentChild
|
2009-08-12 20:18:08 +04:00
|
|
|
{
|
2012-07-18 03:59:45 +04:00
|
|
|
typedef layers::PCompositorChild PCompositorChild;
|
|
|
|
|
2009-08-12 20:18:08 +04:00
|
|
|
public:
|
2010-07-19 22:33:33 +04:00
|
|
|
ContentChild();
|
|
|
|
virtual ~ContentChild();
|
2009-08-12 20:18:08 +04:00
|
|
|
|
2011-10-05 00:31:00 +04:00
|
|
|
struct AppInfo
|
|
|
|
{
|
|
|
|
nsCString version;
|
|
|
|
nsCString buildID;
|
|
|
|
};
|
|
|
|
|
2009-10-28 00:52:37 +03:00
|
|
|
bool Init(MessageLoop* aIOLoop,
|
|
|
|
base::ProcessHandle aParentHandle,
|
|
|
|
IPC::Channel* aChannel);
|
2010-09-24 05:39:32 +04:00
|
|
|
void InitXPCOM();
|
2009-08-12 20:18:08 +04:00
|
|
|
|
2010-07-19 22:33:33 +04:00
|
|
|
static ContentChild* GetSingleton() {
|
2009-08-13 04:32:50 +04:00
|
|
|
NS_ASSERTION(sSingleton, "not initialized");
|
|
|
|
return sSingleton;
|
|
|
|
}
|
|
|
|
|
2011-10-05 00:31:00 +04:00
|
|
|
const AppInfo& GetAppInfo() {
|
|
|
|
return mAppInfo;
|
|
|
|
}
|
|
|
|
|
2012-07-18 03:59:45 +04:00
|
|
|
PCompositorChild* AllocPCompositor(ipc::Transport* aTransport,
|
|
|
|
base::ProcessId aOtherProcess) MOZ_OVERRIDE;
|
2010-03-24 13:47:18 +03:00
|
|
|
|
2012-06-22 05:17:52 +04:00
|
|
|
virtual PBrowserChild* AllocPBrowser(const PRUint32& aChromeFlags,
|
2012-07-22 04:16:11 +04:00
|
|
|
const bool& aIsBrowserElement,
|
|
|
|
const PRUint32& aAppId);
|
2010-07-19 22:33:33 +04:00
|
|
|
virtual bool DeallocPBrowser(PBrowserChild*);
|
2009-08-12 20:18:08 +04:00
|
|
|
|
2012-06-20 03:14:39 +04:00
|
|
|
virtual PDeviceStorageRequestChild* AllocPDeviceStorageRequest(const DeviceStorageParams&);
|
|
|
|
virtual bool DeallocPDeviceStorageRequest(PDeviceStorageRequestChild*);
|
|
|
|
|
2011-06-08 23:56:31 +04:00
|
|
|
virtual PCrashReporterChild*
|
|
|
|
AllocPCrashReporter(const mozilla::dom::NativeThreadId& id,
|
|
|
|
const PRUint32& processType);
|
|
|
|
virtual bool
|
|
|
|
DeallocPCrashReporter(PCrashReporterChild*);
|
2010-11-24 17:15:03 +03:00
|
|
|
|
2011-10-06 02:15:45 +04:00
|
|
|
NS_OVERRIDE virtual PHalChild* AllocPHal();
|
|
|
|
NS_OVERRIDE virtual bool DeallocPHal(PHalChild*);
|
|
|
|
|
2012-07-14 15:24:20 +04:00
|
|
|
virtual PIndexedDBChild* AllocPIndexedDB();
|
|
|
|
virtual bool DeallocPIndexedDB(PIndexedDBChild* aActor);
|
|
|
|
|
2011-02-16 21:43:23 +03:00
|
|
|
virtual PMemoryReportRequestChild*
|
|
|
|
AllocPMemoryReportRequest();
|
|
|
|
|
|
|
|
virtual bool
|
|
|
|
DeallocPMemoryReportRequest(PMemoryReportRequestChild* actor);
|
|
|
|
|
|
|
|
virtual bool
|
|
|
|
RecvPMemoryReportRequestConstructor(PMemoryReportRequestChild* child);
|
|
|
|
|
2009-09-22 21:31:11 +04:00
|
|
|
virtual PTestShellChild* AllocPTestShell();
|
|
|
|
virtual bool DeallocPTestShell(PTestShellChild*);
|
2009-11-06 23:43:39 +03:00
|
|
|
virtual bool RecvPTestShellConstructor(PTestShellChild*);
|
2009-08-26 03:07:22 +04:00
|
|
|
|
2010-11-17 07:14:19 +03:00
|
|
|
virtual PAudioChild* AllocPAudio(const PRInt32&,
|
|
|
|
const PRInt32&,
|
|
|
|
const PRInt32&);
|
|
|
|
virtual bool DeallocPAudio(PAudioChild*);
|
|
|
|
|
2009-09-22 21:31:11 +04:00
|
|
|
virtual PNeckoChild* AllocPNecko();
|
|
|
|
virtual bool DeallocPNecko(PNeckoChild*);
|
2009-08-18 23:05:15 +04:00
|
|
|
|
2010-09-16 02:55:08 +04:00
|
|
|
virtual PExternalHelperAppChild *AllocPExternalHelperApp(
|
|
|
|
const IPC::URI& uri,
|
|
|
|
const nsCString& aMimeContentType,
|
|
|
|
const nsCString& aContentDisposition,
|
|
|
|
const bool& aForceSave,
|
2010-11-21 22:21:59 +03:00
|
|
|
const PRInt64& aContentLength,
|
|
|
|
const IPC::URI& aReferrer);
|
2010-09-16 02:55:08 +04:00
|
|
|
virtual bool DeallocPExternalHelperApp(PExternalHelperAppChild *aService);
|
|
|
|
|
2011-11-21 02:40:53 +04:00
|
|
|
virtual PSmsChild* AllocPSms();
|
|
|
|
virtual bool DeallocPSms(PSmsChild*);
|
|
|
|
|
2010-11-19 04:15:23 +03:00
|
|
|
virtual PStorageChild* AllocPStorage(const StorageConstructData& aData);
|
|
|
|
virtual bool DeallocPStorage(PStorageChild* aActor);
|
|
|
|
|
2010-11-09 05:49:00 +03:00
|
|
|
virtual bool RecvRegisterChrome(const InfallibleTArray<ChromePackage>& packages,
|
|
|
|
const InfallibleTArray<ResourceMapping>& resources,
|
2011-01-12 00:34:31 +03:00
|
|
|
const InfallibleTArray<OverrideMapping>& overrides,
|
|
|
|
const nsCString& locale);
|
2010-03-11 08:33:00 +03:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
virtual bool RecvSetOffline(const bool& offline);
|
2010-05-11 16:44:12 +04:00
|
|
|
|
2010-07-02 19:50:41 +04:00
|
|
|
virtual bool RecvNotifyVisited(const IPC::URI& aURI);
|
2010-09-15 20:44:57 +04:00
|
|
|
// auto remove when alertfinished is received.
|
|
|
|
nsresult AddRemoteAlertObserver(const nsString& aData, nsIObserver* aObserver);
|
|
|
|
|
2010-10-20 00:35:08 +04:00
|
|
|
virtual bool RecvPreferenceUpdate(const PrefTuple& aPref);
|
2011-01-06 07:54:47 +03:00
|
|
|
virtual bool RecvClearUserPreference(const nsCString& aPrefName);
|
2010-10-20 00:35:08 +04:00
|
|
|
|
2010-09-15 20:44:57 +04:00
|
|
|
virtual bool RecvNotifyAlertsObserver(const nsCString& aType, const nsString& aData);
|
|
|
|
|
2010-08-31 22:58:35 +04:00
|
|
|
virtual bool RecvAsyncMessage(const nsString& aMsg, const nsString& aJSON);
|
2010-05-26 04:13:47 +04:00
|
|
|
|
2010-09-21 08:16:37 +04:00
|
|
|
virtual bool RecvGeolocationUpdate(const GeoPosition& somewhere);
|
|
|
|
|
2010-10-09 22:07:38 +04:00
|
|
|
virtual bool RecvAddPermission(const IPC::Permission& permission);
|
|
|
|
|
2010-11-24 21:22:40 +03:00
|
|
|
virtual bool RecvScreenSizeChanged(const gfxIntSize &size);
|
2010-12-12 01:36:08 +03:00
|
|
|
|
|
|
|
virtual bool RecvFlushMemory(const nsString& reason);
|
|
|
|
|
2011-07-21 08:37:32 +04:00
|
|
|
virtual bool RecvActivateA11y();
|
|
|
|
|
2011-09-13 21:53:51 +04:00
|
|
|
virtual bool RecvGarbageCollect();
|
|
|
|
virtual bool RecvCycleCollect();
|
|
|
|
|
2011-10-05 00:31:00 +04:00
|
|
|
virtual bool RecvAppInfo(const nsCString& version, const nsCString& buildID);
|
2011-09-30 11:00:48 +04:00
|
|
|
virtual bool RecvSetID(const PRUint64 &id);
|
2011-10-05 00:31:00 +04:00
|
|
|
|
2012-04-20 04:13:20 +04:00
|
|
|
virtual bool RecvLastPrivateDocShellDestroyed();
|
|
|
|
|
2010-11-24 21:22:40 +03:00
|
|
|
#ifdef ANDROID
|
|
|
|
gfxIntSize GetScreenSize() { return mScreenSize; }
|
|
|
|
#endif
|
|
|
|
|
2011-04-30 03:46:20 +04:00
|
|
|
// Get the directory for IndexedDB files. We query the parent for this and
|
|
|
|
// cache the value
|
|
|
|
nsString &GetIndexedDBPath();
|
|
|
|
|
2011-09-30 11:00:48 +04:00
|
|
|
PRUint64 GetID() { return mID; }
|
|
|
|
|
2009-12-07 09:03:49 +03:00
|
|
|
private:
|
2012-07-18 03:59:45 +04:00
|
|
|
virtual void ActorDestroy(ActorDestroyReason why) MOZ_OVERRIDE;
|
2009-12-07 09:03:49 +03:00
|
|
|
|
2012-07-18 03:59:45 +04:00
|
|
|
virtual void ProcessingError(Result what) MOZ_OVERRIDE;
|
2010-08-21 03:24:40 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Exit *now*. Do not shut down XPCOM, do not pass Go, do not run
|
|
|
|
* static destructors, do not collect $200.
|
|
|
|
*/
|
2011-12-18 01:45:29 +04:00
|
|
|
MOZ_NORETURN void QuickExit();
|
2010-08-21 03:24:40 +04:00
|
|
|
|
2010-11-09 05:49:00 +03:00
|
|
|
InfallibleTArray<nsAutoPtr<AlertObserver> > mAlertObservers;
|
2010-09-24 05:39:32 +04:00
|
|
|
nsRefPtr<ConsoleListener> mConsoleListener;
|
2010-11-24 21:22:40 +03:00
|
|
|
#ifdef ANDROID
|
|
|
|
gfxIntSize mScreenSize;
|
|
|
|
#endif
|
2009-08-13 04:32:50 +04:00
|
|
|
|
2011-09-30 11:00:48 +04: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.
|
|
|
|
*/
|
|
|
|
PRUint64 mID;
|
|
|
|
|
2012-04-25 20:35:58 +04:00
|
|
|
AppInfo mAppInfo;
|
|
|
|
|
2010-07-21 22:42:32 +04:00
|
|
|
static ContentChild* sSingleton;
|
2010-05-26 04:13:47 +04:00
|
|
|
|
2010-07-19 22:33:33 +04:00
|
|
|
DISALLOW_EVIL_CONSTRUCTORS(ContentChild);
|
2009-08-12 20:18:08 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif
|