summaryrefslogtreecommitdiffstats
path: root/ipc/ipdl/test/cxx/PTestLayoutThread.ipdl
diff options
context:
space:
mode:
Diffstat (limited to 'ipc/ipdl/test/cxx/PTestLayoutThread.ipdl')
-rw-r--r--ipc/ipdl/test/cxx/PTestLayoutThread.ipdl19
1 files changed, 19 insertions, 0 deletions
diff --git a/ipc/ipdl/test/cxx/PTestLayoutThread.ipdl b/ipc/ipdl/test/cxx/PTestLayoutThread.ipdl
new file mode 100644
index 0000000000..a2153ee462
--- /dev/null
+++ b/ipc/ipdl/test/cxx/PTestLayoutThread.ipdl
@@ -0,0 +1,19 @@
+include protocol PTestPaintThread;
+
+namespace mozilla {
+namespace _ipdltest {
+
+// This is supposed to be analagous to PLayerTransaction.
+sync protocol PTestLayoutThread
+{
+parent:
+ async FinishedLayout(uint64_t aTxnId);
+ async AsyncMessage(uint64_t aTxnId);
+ sync SyncMessage(uint64_t aTxnId);
+ async EndTest();
+child:
+ async StartTest(Endpoint<PTestPaintThreadChild> endpoint);
+};
+
+} // namespace mozilla
+} // namespace _ipdltest