summaryrefslogtreecommitdiffstats
path: root/ipc/ipdl/test/cxx/PTestShmem.ipdl
diff options
context:
space:
mode:
Diffstat (limited to 'ipc/ipdl/test/cxx/PTestShmem.ipdl')
-rw-r--r--ipc/ipdl/test/cxx/PTestShmem.ipdl17
1 files changed, 0 insertions, 17 deletions
diff --git a/ipc/ipdl/test/cxx/PTestShmem.ipdl b/ipc/ipdl/test/cxx/PTestShmem.ipdl
deleted file mode 100644
index 7eb6dfdc36..0000000000
--- a/ipc/ipdl/test/cxx/PTestShmem.ipdl
+++ /dev/null
@@ -1,17 +0,0 @@
-include "mozilla/_ipdltest/TestShmem.h";
-
-namespace mozilla {
-namespace _ipdltest {
-
-[ManualDealloc, ChildImpl="TestShmemChild", ParentImpl="TestShmemParent"]
-protocol PTestShmem {
-child:
- async Give(Shmem mem, Shmem unsafe, uint32_t expectedSize);
-
-parent:
- async Take(Shmem mem, Shmem unsafe, uint32_t expectedSize);
- async __delete__();
-};
-
-}
-}