summaryrefslogtreecommitdiffstats
path: root/ipc/ipdl/test/cxx/PTestJSON.ipdl
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:14:29 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:14:29 +0000
commitfbaf0bb26397aa498eb9156f06d5a6fe34dd7dd8 (patch)
tree4c1ccaf5486d4f2009f9a338a98a83e886e29c97 /ipc/ipdl/test/cxx/PTestJSON.ipdl
parentReleasing progress-linux version 124.0.1-1~progress7.99u1. (diff)
downloadfirefox-fbaf0bb26397aa498eb9156f06d5a6fe34dd7dd8.tar.xz
firefox-fbaf0bb26397aa498eb9156f06d5a6fe34dd7dd8.zip
Merging upstream version 125.0.1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'ipc/ipdl/test/cxx/PTestJSON.ipdl')
-rw-r--r--ipc/ipdl/test/cxx/PTestJSON.ipdl49
1 files changed, 0 insertions, 49 deletions
diff --git a/ipc/ipdl/test/cxx/PTestJSON.ipdl b/ipc/ipdl/test/cxx/PTestJSON.ipdl
deleted file mode 100644
index c785abe77a..0000000000
--- a/ipc/ipdl/test/cxx/PTestJSON.ipdl
+++ /dev/null
@@ -1,49 +0,0 @@
-include protocol PTestHandle;
-
-include "mozilla/_ipdltest/TestJSON.h";
-
-using struct mozilla::void_t from "mozilla/ipc/IPCCore.h";
-using struct mozilla::null_t from "mozilla/ipc/IPCCore.h";
-
-namespace mozilla {
-namespace _ipdltest {
-
-union Key {
-// int;
-// double;
- nsString;
-};
-
-struct KeyValue {
- Key key;
- JSONVariant value;
-};
-
-union JSONVariant {
- void_t;
- null_t;
- bool;
- int;
- double;
- nsString;
- PTestHandle;
- KeyValue[];
- JSONVariant[];
-};
-
-[ManualDealloc, ChildImpl="TestJSONChild", ParentImpl="TestJSONParent"]
-sync protocol PTestJSON {
- manages PTestHandle;
-
-child:
- async Start();
-
-parent:
- async PTestHandle();
- sync Test(JSONVariant i)
- returns (JSONVariant o);
- async __delete__();
-};
-
-} // namespace mozilla
-} // namespace _ipdltest