зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1319595, part 5 - Rename rpc to interrupt in IPDL error/ unit tests. r=billm
Change message annotations from "rpc" to "intr" to match the current name, and similarly rename the protocols and the files. MozReview-Commit-ID: Dd9ikvAHMnV --HG-- extra : rebase_source : 0b2d57ca2c4405319f4ecd6ba2f633128355b381
This commit is contained in:
Родитель
6d897bf5ca
Коммит
554d2bf9c1
|
@ -0,0 +1,6 @@
|
|||
intr protocol intrParentToChild {
|
||||
|
||||
// can't declare interrupt parent-to-child messages
|
||||
child: intr Msg();
|
||||
|
||||
};
|
|
@ -1,6 +0,0 @@
|
|||
intr protocol rpcParentToChild {
|
||||
|
||||
// can't declare rpc parent-to-child messages
|
||||
child: rpc Msg();
|
||||
|
||||
};
|
|
@ -1,7 +1,7 @@
|
|||
protocol tooWeakRPCAsync {
|
||||
protocol tooWeakIntrAsync {
|
||||
|
||||
// it's an error to declare an async protocol with an intr message
|
||||
|
||||
parent: intr Msg();
|
||||
parent: intr Msg();
|
||||
|
||||
};
|
|
@ -0,0 +1,6 @@
|
|||
sync protocol tooWeakIntrSync {
|
||||
|
||||
// it's an error to declare a sync protocol with an interrupt message
|
||||
parent:
|
||||
intr Msg();
|
||||
};
|
|
@ -1,6 +0,0 @@
|
|||
sync protocol tooWeakRpcSync {
|
||||
|
||||
// it's an error to declare a sync protocol with an rpc message
|
||||
parent:
|
||||
rpc Msg();
|
||||
};
|
Загрузка…
Ссылка в новой задаче