2009-11-06 12:43:39 -08:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
* vim: set ts=8 sw=4 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-11-06 12:43:39 -08:00
|
|
|
|
2010-04-27 00:12:38 -07:00
|
|
|
include protocol PTestShell;
|
|
|
|
include protocol PObjectWrapper;
|
2009-11-06 12:43:39 -08:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace jsipc {
|
|
|
|
|
|
|
|
rpc protocol PContextWrapper
|
|
|
|
{
|
2010-06-17 14:10:14 -07:00
|
|
|
manager PTestShell;
|
2009-11-06 12:43:39 -08:00
|
|
|
manages PObjectWrapper;
|
|
|
|
parent:
|
|
|
|
async __delete__();
|
|
|
|
async PObjectWrapper(bool makeGlobal);
|
|
|
|
};
|
|
|
|
|
|
|
|
}}
|