diff options
| author | 2018-08-30 13:11:27 +0100 | |
|---|---|---|
| committer | 2018-09-10 11:52:56 +0000 | |
| commit | 1d5d0ec528d2a3da6ca63c4e230e6447fa09ce9b (patch) | |
| tree | e00d22d42831de6de7f1815292dc6d6a3db0d06e | |
| parent | 00ebba4f98d943bfe4235428130ece0efe5cf589 (diff) | |
Publish a binder service from LooperStatsService
Moved out of change I9cd4c819297ea34ab59c3cf9cfd11136987acc22 because
this part needs the SE Policy to be updated first.
Test: manual
Change-Id: Id6efed69394a34c41a7e6f9b73cb54dac8b5aeb5
| -rw-r--r-- | services/core/java/com/android/server/LooperStatsService.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/core/java/com/android/server/LooperStatsService.java b/services/core/java/com/android/server/LooperStatsService.java index 23b30cc5b1b0..ab7bf288a2ff 100644 --- a/services/core/java/com/android/server/LooperStatsService.java +++ b/services/core/java/com/android/server/LooperStatsService.java @@ -148,7 +148,7 @@ public class LooperStatsService extends Binder { @Override public void onStart() { publishLocalService(LooperStats.class, mStats); - // TODO: publish LooperStatsService as a binder service when the SE Policy is changed. + publishBinderService(LOOPER_STATS_SERVICE_NAME, mService); } @Override |