diff options
author | 2025-02-04 09:59:19 -0800 | |
---|---|---|
committer | 2025-02-04 09:59:19 -0800 | |
commit | 052e551b92e8d3b8658f77746a344576476b7d13 (patch) | |
tree | 765372c544af3d7e62dd2c781169e766c721e978 /services/incremental/IncrementalService.cpp | |
parent | d4aa76813e4fe77ab90ba3ce01b9db250f5de250 (diff) |
[appops] Migrate native IAppOpsCallback to aidl
Move IAppOpsCallback to frameworks/native for use in both java and
native.
Fix-up callsites with fully qualified package name and the correct
arguments.
Test: compiles
Test: atest CtsMediaAudioPermissionTestCases
Test: atest service.incremental_test
Bug: 322692565
Flag: EXEMPT mechanical
Change-Id: I8d5fff5ef86e0b2d68df4a95745fe430134fe1f0
Diffstat (limited to 'services/incremental/IncrementalService.cpp')
-rw-r--r-- | services/incremental/IncrementalService.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/services/incremental/IncrementalService.cpp b/services/incremental/IncrementalService.cpp index dae481a3c215..36947a2a6d62 100644 --- a/services/incremental/IncrementalService.cpp +++ b/services/incremental/IncrementalService.cpp @@ -3198,8 +3198,10 @@ void IncrementalService::DataLoaderStub::onDump(int fd) { dprintf(fd, " }\n"); } -void IncrementalService::AppOpsListener::opChanged(int32_t, const String16&) { +binder::Status IncrementalService::AppOpsListener::opChanged(int32_t, int32_t, + const String16&, const String16&) { incrementalService.onAppOpChanged(packageName); + return binder::Status::ok(); } binder::Status IncrementalService::IncrementalServiceConnector::setStorageParams( |