diff options
Diffstat (limited to 'ipc/ipdl/test/cxx/PTestDemon.ipdl')
-rw-r--r-- | ipc/ipdl/test/cxx/PTestDemon.ipdl | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/ipc/ipdl/test/cxx/PTestDemon.ipdl b/ipc/ipdl/test/cxx/PTestDemon.ipdl deleted file mode 100644 index f5af2396e6..0000000000 --- a/ipc/ipdl/test/cxx/PTestDemon.ipdl +++ /dev/null @@ -1,24 +0,0 @@ -include "mozilla/_ipdltest/TestDemon.h"; - -namespace mozilla { -namespace _ipdltest { - -[ManualDealloc, NestedUpTo=inside_cpow, ChildImpl="TestDemonChild", ParentImpl="TestDemonParent"] -sync protocol PTestDemon -{ -child: - async Start(); - -both: - async AsyncMessage(int n); - [Nested=inside_sync] sync HiPrioSyncMessage(); - -parent: - sync SyncMessage(int n); - - [Nested=inside_cpow] async UrgentAsyncMessage(int n); - [Nested=inside_cpow] sync UrgentSyncMessage(int n); -}; - -} // namespace _ipdltest -} // namespace mozilla |