blob: 00d46c975754c74f56994ec7c0edbac380878077 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
include "mozilla/_ipdltest/TestOffMainThreadPainting.h";
namespace mozilla {
namespace _ipdltest {
// This is supposed to be analagous to PPaintingBridge.
[ManualDealloc, ChildImpl="TestPaintThreadChild", ParentImpl="TestPaintThreadParent"]
sync protocol PTestPaintThread
{
parent:
sync FinishedPaint(uint64_t aTxnId);
};
} // namespace mozilla
} // namespace _ipdltest
|