1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/ipc/ipdl/test/cxx/PTestIndirectProtocolParam.ipdlh Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,15 @@ 1.4 +include protocol PTestIndirectProtocolParamSecond; 1.5 + 1.6 +namespace mozilla { 1.7 +namespace _ipdltest { 1.8 + 1.9 +struct IndirectParamStruct { 1.10 + PTestIndirectProtocolParamSecond actor; 1.11 +}; 1.12 + 1.13 +union IndirectParamUnion { 1.14 + IndirectParamStruct; 1.15 +}; 1.16 + 1.17 +} 1.18 +}