Merge "Add test for Java GC for binder objects."

This commit is contained in:
Yifan Hong
2016-12-21 18:17:18 +00:00
committed by Gerrit Code Review
2 changed files with 5 additions and 0 deletions

View File

@@ -49,6 +49,10 @@ interface IBaz extends IBase {
doStuffAndReturnAString() generates (string something);
mapThisVector(vec<int32_t> param) generates (vec<int32_t> something);
callMe(IBazCallback cb);
callMeLater(IBazCallback cb);
iAmFreeNow();
useAnEnum(SomeEnum zzz) generates (SomeEnum kkk);
haveSomeStrings(string[3] array) generates (string[2] result);

View File

@@ -18,4 +18,5 @@ package android.hardware.tests.baz@1.0;
interface IBazCallback {
heyItsMe(IBazCallback cb);
hey();
};