2014-06-11 09:44:13 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=2 et sw=2 tw=80: */
|
|
|
|
/* 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/. */
|
|
|
|
|
|
|
|
include protocol PBlob;
|
|
|
|
include protocol PBrowser;
|
|
|
|
include protocol PContent;
|
|
|
|
include protocol PJavaScript;
|
2016-09-21 13:27:26 +03:00
|
|
|
include protocol PFileDescriptorSet;
|
|
|
|
include protocol PSendStream;
|
2014-06-11 09:44:13 +04:00
|
|
|
|
|
|
|
include DOMTypes;
|
|
|
|
include JavaScriptTypes;
|
|
|
|
include PTabContext;
|
|
|
|
|
|
|
|
using class IPC::Principal from "mozilla/dom/PermissionMessageUtils.h";
|
2014-10-29 21:11:00 +03:00
|
|
|
using mozilla::dom::TabId from "mozilla/dom/ipc/IdType.h";
|
2014-10-24 04:28:00 +04:00
|
|
|
using mozilla::dom::ContentParentId from "mozilla/dom/ipc/IdType.h";
|
2016-08-10 09:18:29 +03:00
|
|
|
using class mozilla::dom::MessagePort from "mozilla/dom/MessagePort.h";
|
|
|
|
using class mozilla::dom::ipc::StructuredCloneData from "mozilla/dom/ipc/StructuredCloneData.h";
|
2014-06-11 09:44:13 +04:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
/*
|
|
|
|
* PContentBridge allows us to represent a parent/child relationship between two
|
|
|
|
* child processes. When a child process wants to open its own child, it asks
|
|
|
|
* the root process to create a new process and then bridge them. The first
|
|
|
|
* child will allocate the PContentBridgeParent, and the newly opened child will
|
|
|
|
* allocate the PContentBridgeChild. This protocol allows these processes to
|
|
|
|
* share PBrowsers and send messages to each other.
|
|
|
|
*/
|
2016-10-01 02:20:50 +03:00
|
|
|
nested(upto inside_cpow) sync protocol PContentBridge
|
2014-06-11 09:44:13 +04:00
|
|
|
{
|
|
|
|
manages PBlob;
|
|
|
|
manages PBrowser;
|
2016-09-21 13:27:26 +03:00
|
|
|
manages PFileDescriptorSet;
|
2014-06-11 09:44:13 +04:00
|
|
|
manages PJavaScript;
|
2016-09-21 13:27:26 +03:00
|
|
|
manages PSendStream;
|
2014-06-11 09:44:13 +04:00
|
|
|
|
|
|
|
parent:
|
|
|
|
sync SyncMessage(nsString aMessage, ClonedMessageData aData,
|
|
|
|
CpowEntry[] aCpows, Principal aPrincipal)
|
2015-09-10 23:50:58 +03:00
|
|
|
returns (StructuredCloneData[] retval);
|
2015-10-09 10:25:00 +03:00
|
|
|
|
|
|
|
async PJavaScript();
|
2016-09-21 13:27:26 +03:00
|
|
|
|
|
|
|
async PSendStream();
|
|
|
|
|
2014-06-11 09:44:13 +04:00
|
|
|
both:
|
|
|
|
// Both the parent and the child can construct the PBrowser.
|
|
|
|
// See the comment in PContent::PBrowser().
|
2014-10-29 21:11:00 +03:00
|
|
|
async PBrowser(TabId tabId, IPCTabContext context, uint32_t chromeFlags,
|
2016-10-15 04:46:26 +03:00
|
|
|
ContentParentId cpId, bool isForBrowser);
|
2014-06-11 09:44:13 +04:00
|
|
|
|
|
|
|
async PBlob(BlobConstructorParams params);
|
|
|
|
|
2016-09-21 13:27:26 +03:00
|
|
|
async PFileDescriptorSet(FileDescriptor fd);
|
|
|
|
|
2016-04-09 16:50:59 +03:00
|
|
|
async AsyncMessage(nsString aMessage, CpowEntry[] aCpows,
|
|
|
|
Principal aPrincipal, ClonedMessageData aData);
|
2014-06-11 09:44:13 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|