diff options
| author | 2016-11-23 15:24:51 -0800 | |
|---|---|---|
| committer | 2016-11-23 15:25:33 -0800 | |
| commit | 027a33da6f02bcb33aba81eb73e2018c024d0b03 (patch) | |
| tree | b097c89faa67b2d8a33f12eb5f0e62e46b3abb9d | |
| parent | 3f5de07e92f46b3a3873a9fb90d86e7c888f99b8 (diff) | |
Add comment in IActivityManager.aidl.
Bug: 30977067
Test: N/A
Change-Id: Ide7385f5d4493f45d75550c569457865107bf779
| -rw-r--r-- | core/java/android/app/IActivityManager.aidl | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/core/java/android/app/IActivityManager.aidl b/core/java/android/app/IActivityManager.aidl index 82be7abeb87d..03944373190b 100644 --- a/core/java/android/app/IActivityManager.aidl +++ b/core/java/android/app/IActivityManager.aidl @@ -76,10 +76,12 @@ import java.util.List; */ interface IActivityManager { // WARNING: when these transactions are updated, check if they are any callers on the native - // side. If so, make sure they are using the correct transaction ids. + // side. If so, make sure they are using the correct transaction ids and arguments. // If a transaction which will also be used on the native side is being inserted, add it to // below block of transactions. + // Since these transactions are also called from native code, these must be kept in sync with + // the ones in frameworks/native/include/binder/IActivityManager.h // =============== Beginning of transactions used on native side as well ====================== ParcelFileDescriptor openContentUri(in String uriString); // =============== End of transactions used on native side as well ============================ @@ -573,7 +575,7 @@ interface IActivityManager { in IBinder activityToken); // WARNING: when these transactions are updated, check if they are any callers on the native - // side. If so, make sure they are using the correct transaction ids. + // side. If so, make sure they are using the correct transaction ids and arguments. // If a transaction which will also be used on the native side is being inserted, add it // alongside with other transactions of this kind at the top of this file. }
\ No newline at end of file |