Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 include protocol PTestSelfManageRoot;
3 namespace mozilla {
4 namespace _ipdltest {
7 protocol PTestSelfManage {
8 manager PTestSelfManageRoot or PTestSelfManage;
9 manages PTestSelfManage;
11 child:
12 PTestSelfManage();
13 __delete__();
15 state LIVE:
16 send PTestSelfManage goto LIVE;
17 send __delete__;
18 };
21 } // namespace mozilla
22 } // namespace _ipdltest