2009-09-09 15:00:14 -07:00
|
|
|
/* -*- Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 8 -*- */
|
2009-08-18 12:05:15 -07:00
|
|
|
/* vim: set sw=4 ts=8 et tw=80 ft=cpp : */
|
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-07-10 23:33:10 -07:00
|
|
|
|
2010-11-16 20:14:19 -08:00
|
|
|
include protocol PAudio;
|
2012-08-01 23:02:29 -07:00
|
|
|
include protocol PBlob;
|
2010-07-19 11:33:33 -07:00
|
|
|
include protocol PBrowser;
|
2012-07-17 16:59:45 -07:00
|
|
|
include protocol PCompositor;
|
2010-11-24 06:15:03 -08:00
|
|
|
include protocol PCrashReporter;
|
2010-09-15 15:55:08 -07:00
|
|
|
include protocol PExternalHelperApp;
|
2012-06-19 16:14:39 -07:00
|
|
|
include protocol PDeviceStorageRequest;
|
2011-10-05 15:15:45 -07:00
|
|
|
include protocol PHal;
|
2012-08-29 05:24:48 -07:00
|
|
|
include protocol PImageBridge;
|
2012-07-14 04:24:20 -07:00
|
|
|
include protocol PIndexedDB;
|
2011-02-16 10:43:23 -08:00
|
|
|
include protocol PMemoryReportRequest;
|
2011-10-05 15:15:45 -07:00
|
|
|
include protocol PNecko;
|
2011-11-20 14:40:53 -08:00
|
|
|
include protocol PSms;
|
2011-10-05 15:15:45 -07:00
|
|
|
include protocol PStorage;
|
|
|
|
include protocol PTestShell;
|
2012-08-23 12:33:46 -07:00
|
|
|
include DOMTypes;
|
|
|
|
include URIParams;
|
2009-09-09 15:00:14 -07:00
|
|
|
|
2010-03-10 21:33:00 -08:00
|
|
|
include "mozilla/chrome/RegistryMessageUtils.h";
|
2010-07-15 07:04:25 -07:00
|
|
|
include "mozilla/net/NeckoMessageUtils.h";
|
2011-06-08 12:56:31 -07:00
|
|
|
include "mozilla/dom/TabMessageUtils.h";
|
2010-03-10 21:33:00 -08:00
|
|
|
|
2010-09-20 21:16:37 -07:00
|
|
|
include "nsGeoPositionIPCSerialiser.h";
|
|
|
|
|
|
|
|
using GeoPosition;
|
2010-10-19 13:35:08 -07:00
|
|
|
using PrefTuple;
|
2010-09-20 21:16:37 -07:00
|
|
|
|
2010-03-10 21:33:00 -08:00
|
|
|
using ChromePackage;
|
|
|
|
using ResourceMapping;
|
|
|
|
using OverrideMapping;
|
2010-10-09 11:07:38 -07:00
|
|
|
using IPC::Permission;
|
2010-11-18 17:15:23 -08:00
|
|
|
using mozilla::null_t;
|
2012-08-01 23:02:29 -07:00
|
|
|
using mozilla::void_t;
|
2011-06-08 12:56:31 -07:00
|
|
|
using mozilla::dom::NativeThreadId;
|
2010-11-24 10:22:40 -08:00
|
|
|
using gfxIntSize;
|
2009-09-09 15:00:14 -07:00
|
|
|
|
2009-07-10 23:33:10 -07:00
|
|
|
namespace mozilla {
|
2009-09-09 15:00:14 -07:00
|
|
|
namespace dom {
|
2009-07-10 23:33:10 -07:00
|
|
|
|
2010-11-18 17:15:23 -08:00
|
|
|
// Data required to clone an existing DOMStorageImpl in the parent
|
|
|
|
struct StorageClone
|
|
|
|
{
|
|
|
|
// Existing cross-process storage actor to clone
|
|
|
|
PStorage actor;
|
|
|
|
// Result of calling IsCallerSecure() in the child
|
|
|
|
bool callerSecure;
|
|
|
|
};
|
|
|
|
|
|
|
|
// When creating a new PStorage protocol, an existing one can be
|
|
|
|
// cloned (see nsDOMStorage2::Clone)
|
|
|
|
union StorageConstructData
|
|
|
|
{
|
|
|
|
null_t;
|
|
|
|
StorageClone;
|
|
|
|
};
|
|
|
|
|
2011-01-12 20:04:42 -08:00
|
|
|
struct FontListEntry {
|
2011-09-23 04:15:36 -07:00
|
|
|
nsString familyName;
|
|
|
|
nsString faceName;
|
2011-01-12 20:04:42 -08:00
|
|
|
nsCString filepath;
|
2012-08-22 08:56:38 -07:00
|
|
|
uint16_t weight;
|
|
|
|
int16_t stretch;
|
|
|
|
uint8_t italic;
|
|
|
|
uint8_t index;
|
2011-01-12 20:04:42 -08:00
|
|
|
};
|
|
|
|
|
2012-07-31 12:28:23 -07:00
|
|
|
struct DeviceStorageStatParams
|
|
|
|
{
|
2012-08-30 15:17:37 -07:00
|
|
|
nsString type;
|
2012-07-31 12:28:23 -07:00
|
|
|
nsString fullpath;
|
|
|
|
};
|
|
|
|
|
2012-06-19 16:14:39 -07:00
|
|
|
struct DeviceStorageAddParams
|
|
|
|
{
|
2012-08-30 15:17:37 -07:00
|
|
|
nsString type;
|
2012-08-09 15:41:18 -07:00
|
|
|
PBlob blob;
|
|
|
|
nsString name;
|
2012-06-19 16:14:39 -07:00
|
|
|
nsString fullpath;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct DeviceStorageGetParams
|
|
|
|
{
|
2012-08-30 15:17:37 -07:00
|
|
|
nsString type;
|
2012-08-09 15:41:18 -07:00
|
|
|
nsString name;
|
2012-06-19 16:14:39 -07:00
|
|
|
nsString fullpath;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct DeviceStorageDeleteParams
|
|
|
|
{
|
2012-08-30 15:17:37 -07:00
|
|
|
nsString type;
|
2012-06-19 16:14:39 -07:00
|
|
|
nsString fullpath;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct DeviceStorageEnumerationParams
|
|
|
|
{
|
2012-08-30 15:17:37 -07:00
|
|
|
nsString type;
|
2012-06-19 16:14:39 -07:00
|
|
|
nsString fullpath;
|
2012-08-22 08:56:38 -07:00
|
|
|
uint64_t since;
|
2012-06-19 16:14:39 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
union DeviceStorageParams
|
|
|
|
{
|
|
|
|
DeviceStorageAddParams;
|
|
|
|
DeviceStorageGetParams;
|
|
|
|
DeviceStorageDeleteParams;
|
|
|
|
DeviceStorageEnumerationParams;
|
2012-07-31 12:28:23 -07:00
|
|
|
DeviceStorageStatParams;
|
2012-06-19 16:14:39 -07:00
|
|
|
};
|
2012-08-01 23:02:29 -07:00
|
|
|
|
|
|
|
struct SlicedBlobConstructorParams
|
|
|
|
{
|
|
|
|
PBlob source;
|
|
|
|
uint64_t begin;
|
|
|
|
uint64_t end;
|
|
|
|
nsString contentType;
|
|
|
|
};
|
|
|
|
|
2012-08-02 23:25:30 -07:00
|
|
|
struct MysteryBlobConstructorParams
|
|
|
|
{
|
|
|
|
// Nothing is known about this type of blob.
|
|
|
|
};
|
|
|
|
|
2012-08-01 23:02:29 -07:00
|
|
|
union BlobConstructorParams
|
|
|
|
{
|
|
|
|
NormalBlobConstructorParams;
|
|
|
|
FileBlobConstructorParams;
|
|
|
|
SlicedBlobConstructorParams;
|
2012-08-02 23:25:30 -07:00
|
|
|
MysteryBlobConstructorParams;
|
2012-08-01 23:02:29 -07:00
|
|
|
};
|
|
|
|
|
2012-08-08 19:58:06 -07:00
|
|
|
union AppId {
|
|
|
|
uint32_t;
|
|
|
|
nullable PBrowser;
|
|
|
|
};
|
|
|
|
|
2012-08-22 13:00:21 -07:00
|
|
|
union PrefValue {
|
|
|
|
nsCString;
|
|
|
|
int32_t;
|
|
|
|
bool;
|
|
|
|
};
|
|
|
|
|
|
|
|
union MaybePrefValue {
|
|
|
|
PrefValue;
|
|
|
|
null_t;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct PrefSetting {
|
|
|
|
nsCString name;
|
|
|
|
MaybePrefValue defaultValue;
|
|
|
|
MaybePrefValue userValue;
|
|
|
|
};
|
|
|
|
|
2010-07-19 11:33:33 -07:00
|
|
|
rpc protocol PContent
|
2009-07-10 23:33:10 -07:00
|
|
|
{
|
2012-07-17 16:59:45 -07:00
|
|
|
parent opens PCompositor;
|
2012-08-29 05:24:48 -07:00
|
|
|
parent opens PImageBridge;
|
2012-07-17 16:59:45 -07:00
|
|
|
|
2010-11-16 20:14:19 -08:00
|
|
|
manages PAudio;
|
2012-08-01 23:02:29 -07:00
|
|
|
manages PBlob;
|
2010-07-19 11:33:33 -07:00
|
|
|
manages PBrowser;
|
2010-11-24 06:15:03 -08:00
|
|
|
manages PCrashReporter;
|
2012-06-19 16:14:39 -07:00
|
|
|
manages PDeviceStorageRequest;
|
2010-09-15 15:55:08 -07:00
|
|
|
manages PExternalHelperApp;
|
2011-10-05 15:15:45 -07:00
|
|
|
manages PHal;
|
2012-07-14 04:24:20 -07:00
|
|
|
manages PIndexedDB;
|
2011-02-16 10:43:23 -08:00
|
|
|
manages PMemoryReportRequest;
|
2011-10-05 15:15:45 -07:00
|
|
|
manages PNecko;
|
2011-11-20 14:40:53 -08:00
|
|
|
manages PSms;
|
2011-10-05 15:15:45 -07:00
|
|
|
manages PStorage;
|
|
|
|
manages PTestShell;
|
2009-08-25 16:07:22 -07:00
|
|
|
|
2012-06-12 15:01:25 -07:00
|
|
|
both:
|
|
|
|
// Depending on exactly how the new browser is being created, it might be
|
|
|
|
// created from either the child or parent process!
|
|
|
|
//
|
|
|
|
// The child creates the PBrowser as part of
|
2012-08-08 19:58:06 -07:00
|
|
|
// TabChild::BrowserFrameProvideWindow, and the parent creates the
|
|
|
|
// PBrowser as part of ContentParent::CreateTab.
|
|
|
|
//
|
|
|
|
// When the parent constructs a PBrowser, the app ID handed to the
|
|
|
|
// child side is trusted. In that case, |appId| is uint32_t.
|
|
|
|
// However, when the child side constructs a PBrowser, for
|
|
|
|
// window.open(), the parent must validate the app ID used on the
|
|
|
|
// parent side. To do so, the child process must pass a valid
|
|
|
|
// PBrowser as its |AppId|.
|
2012-08-22 08:56:38 -07:00
|
|
|
async PBrowser(uint32_t chromeFlags, bool isBrowserElement, AppId appId);
|
2009-08-25 16:07:22 -07:00
|
|
|
|
2012-08-01 23:02:29 -07:00
|
|
|
async PBlob(BlobConstructorParams params);
|
|
|
|
|
2012-06-12 15:01:25 -07:00
|
|
|
child:
|
2011-02-16 10:43:23 -08:00
|
|
|
PMemoryReportRequest();
|
|
|
|
|
2009-09-09 15:00:14 -07:00
|
|
|
PTestShell();
|
2009-08-25 16:07:22 -07:00
|
|
|
|
2010-03-10 21:33:00 -08:00
|
|
|
RegisterChrome(ChromePackage[] packages, ResourceMapping[] resources,
|
2011-01-11 13:34:31 -08:00
|
|
|
OverrideMapping[] overrides, nsCString locale);
|
2010-03-10 21:33:00 -08:00
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
async SetOffline(bool offline);
|
2010-05-11 05:44:12 -07:00
|
|
|
|
2012-08-23 12:33:46 -07:00
|
|
|
async NotifyVisited(URIParams uri);
|
2010-07-02 08:50:41 -07:00
|
|
|
|
2012-08-22 13:00:21 -07:00
|
|
|
PreferenceUpdate(PrefSetting pref);
|
2010-05-25 17:13:47 -07:00
|
|
|
|
2010-09-15 09:44:57 -07:00
|
|
|
NotifyAlertsObserver(nsCString topic, nsString data);
|
|
|
|
|
2010-09-20 21:16:37 -07:00
|
|
|
GeolocationUpdate(GeoPosition somewhere);
|
|
|
|
|
2010-10-09 11:07:38 -07:00
|
|
|
// nsIPermissionManager messages
|
|
|
|
AddPermission(Permission permission);
|
|
|
|
|
2010-11-24 10:22:40 -08:00
|
|
|
ScreenSizeChanged(gfxIntSize size);
|
|
|
|
|
2010-12-11 14:36:08 -08:00
|
|
|
FlushMemory(nsString reason);
|
|
|
|
|
2011-09-13 10:53:51 -07:00
|
|
|
GarbageCollect();
|
|
|
|
CycleCollect();
|
|
|
|
|
2011-07-20 21:37:32 -07:00
|
|
|
/**
|
|
|
|
* Start accessibility engine in content process.
|
|
|
|
*/
|
|
|
|
ActivateA11y();
|
|
|
|
|
2011-10-04 13:31:00 -07:00
|
|
|
AppInfo(nsCString version, nsCString buildID);
|
|
|
|
|
2012-04-19 17:13:20 -07:00
|
|
|
// Notify child that last-pb-context-exited notification was observed
|
|
|
|
LastPrivateDocShellDestroyed();
|
|
|
|
|
2012-08-30 15:17:37 -07:00
|
|
|
FilePathUpdate(nsString type, nsString filepath, nsCString reasons);
|
2012-08-01 23:32:04 -07:00
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
FileSystemUpdate(nsString fsName, nsString mountPoint, int32_t fsState);
|
2012-08-03 16:48:58 -07:00
|
|
|
|
2009-08-18 12:05:15 -07:00
|
|
|
parent:
|
2012-09-04 17:36:16 -07:00
|
|
|
/**
|
|
|
|
* Tell the content process some attributes of itself. This is
|
|
|
|
* among the first information queried by content processes after
|
|
|
|
* startup. (The message is sync to allow the content process to
|
|
|
|
* control when it receives the information.)
|
|
|
|
*
|
|
|
|
* |id| is a unique ID among all subprocesses. When |isForApp &&
|
|
|
|
* isForBrowser|, we're loading <browser> for an app. When
|
|
|
|
* |isForBrowser|, we're loading <browser>. When |!isForApp &&
|
|
|
|
* !isForBrowser|, we're probably loading <xul:browser remote>.
|
|
|
|
*/
|
|
|
|
sync GetProcessAttributes()
|
|
|
|
returns (uint64_t id, bool startBackground,
|
|
|
|
bool isForApp, bool isForBrowser);
|
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
PAudio(int32_t aNumChannels, int32_t aRate, int32_t aFormat);
|
2010-11-16 20:14:19 -08:00
|
|
|
|
2012-06-19 16:14:39 -07:00
|
|
|
PDeviceStorageRequest(DeviceStorageParams params);
|
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
sync PCrashReporter(NativeThreadId tid, uint32_t processType);
|
2011-06-08 12:56:31 -07:00
|
|
|
|
2011-10-05 15:15:45 -07:00
|
|
|
PHal();
|
|
|
|
|
2012-07-14 04:24:20 -07:00
|
|
|
PIndexedDB();
|
|
|
|
|
2011-10-05 15:15:45 -07:00
|
|
|
PNecko();
|
2011-11-20 14:40:53 -08:00
|
|
|
|
|
|
|
PSms();
|
2011-10-05 15:15:45 -07:00
|
|
|
|
|
|
|
PStorage(StorageConstructData data);
|
|
|
|
|
2010-07-15 07:04:25 -07:00
|
|
|
// Services remoting
|
|
|
|
|
2012-08-23 12:33:46 -07:00
|
|
|
async StartVisitedQuery(URIParams uri);
|
|
|
|
async VisitURI(URIParams uri, OptionalURIParams referrer, uint32_t flags);
|
|
|
|
async SetURITitle(URIParams uri, nsString title);
|
2010-10-20 08:19:24 -07:00
|
|
|
|
|
|
|
// filepicker remoting
|
2012-08-22 08:56:38 -07:00
|
|
|
sync ShowFilePicker(int16_t mode, int16_t selectedType, bool addToRecentDocs,
|
2010-10-20 08:19:24 -07:00
|
|
|
nsString title, nsString defaultFile, nsString defaultExtension,
|
|
|
|
nsString[] filters, nsString[] filterNames)
|
2012-08-22 08:56:38 -07:00
|
|
|
returns (nsString[] files, int16_t retValue, nsresult result);
|
2010-07-02 08:50:41 -07:00
|
|
|
|
2012-08-23 12:33:46 -07:00
|
|
|
async LoadURIExternal(URIParams uri);
|
2010-08-10 10:14:45 -07:00
|
|
|
|
2010-10-19 13:35:08 -07:00
|
|
|
// PrefService message
|
2012-08-22 13:00:21 -07:00
|
|
|
sync ReadPrefsArray() returns (PrefSetting[] prefs);
|
2010-07-15 07:04:25 -07:00
|
|
|
|
2011-01-12 20:04:42 -08:00
|
|
|
sync ReadFontList() returns (FontListEntry[] retValue);
|
|
|
|
|
2012-08-01 23:02:29 -07:00
|
|
|
sync SyncMessage(nsString aMessage, ClonedMessageData aData)
|
2010-08-31 11:58:35 -07:00
|
|
|
returns (nsString[] retval);
|
|
|
|
|
2010-09-15 09:44:57 -07:00
|
|
|
ShowAlertNotification(nsString imageUrl,
|
|
|
|
nsString title,
|
|
|
|
nsString text,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool textClickable,
|
2010-09-15 09:44:57 -07:00
|
|
|
nsString cookie,
|
|
|
|
nsString name);
|
|
|
|
|
2012-08-23 12:33:46 -07:00
|
|
|
PExternalHelperApp(OptionalURIParams uri, nsCString aMimeContentType,
|
2010-09-15 15:55:08 -07:00
|
|
|
nsCString aContentDisposition, bool aForceSave,
|
2012-08-23 12:33:46 -07:00
|
|
|
int64_t aContentLength, OptionalURIParams aReferrer);
|
|
|
|
|
2010-11-05 10:43:13 -07:00
|
|
|
AddGeolocationListener();
|
|
|
|
RemoveGeolocationListener();
|
2010-09-15 15:55:08 -07:00
|
|
|
|
2010-09-23 18:39:32 -07:00
|
|
|
ConsoleMessage(nsString message);
|
|
|
|
ScriptError(nsString message, nsString sourceName, nsString sourceLine,
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t lineNumber, uint32_t colNumber, uint32_t flags,
|
2010-09-23 18:39:32 -07:00
|
|
|
nsCString category);
|
|
|
|
|
2010-10-09 11:07:38 -07:00
|
|
|
// nsIPermissionManager messages
|
|
|
|
sync ReadPermissions() returns (Permission[] permissions);
|
|
|
|
|
2011-02-28 21:36:43 -08:00
|
|
|
// These clipboard methods are only really used on Android since
|
|
|
|
// the clipboard is not available in the content process.
|
2012-08-22 08:56:38 -07:00
|
|
|
SetClipboardText(nsString text, bool isPrivateData, int32_t whichClipboard);
|
|
|
|
sync GetClipboardText(int32_t whichClipboard)
|
2011-02-28 21:36:43 -08:00
|
|
|
returns (nsString text);
|
|
|
|
EmptyClipboard();
|
|
|
|
sync ClipboardHasText()
|
2011-09-28 23:19:26 -07:00
|
|
|
returns (bool hasText);
|
2011-02-28 21:36:43 -08:00
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
sync GetSystemColors(uint32_t colorsCount)
|
|
|
|
returns (uint32_t[] colors);
|
2011-03-30 11:04:41 -07:00
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
sync GetIconForExtension(nsCString aFileExt, uint32_t aIconSize)
|
|
|
|
returns (uint8_t[] bits);
|
2011-06-13 14:02:13 -07:00
|
|
|
|
2011-07-26 18:14:52 -07:00
|
|
|
sync GetShowPasswordSetting()
|
2011-09-28 23:19:26 -07:00
|
|
|
returns (bool showPassword);
|
2011-07-26 18:14:52 -07:00
|
|
|
|
2012-04-19 17:13:20 -07:00
|
|
|
// Notify the parent of the presence or absence of private docshells
|
|
|
|
PrivateDocShellsExist(bool aExist);
|
|
|
|
|
2010-08-31 11:58:35 -07:00
|
|
|
both:
|
2012-08-01 23:02:29 -07:00
|
|
|
AsyncMessage(nsString aMessage, ClonedMessageData aData);
|
2009-07-10 23:33:10 -07:00
|
|
|
};
|
|
|
|
|
2009-09-09 15:00:14 -07:00
|
|
|
}
|
2012-08-29 05:24:48 -07:00
|
|
|
}
|