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:
Andrew McCreight 2016-11-22 15:01:33 -08:00
Родитель 6d897bf5ca
Коммит 554d2bf9c1
5 изменённых файлов: 14 добавлений и 14 удалений

Просмотреть файл

@ -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();
};