Merge "NotificationManager: clean calling identity in dump()."
This commit is contained in:
committed by
Android (Google) Code Review
commit
1b72a7f520
@@ -3125,14 +3125,19 @@ public class NotificationManagerService extends SystemService {
|
||||
protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
|
||||
if (!DumpUtils.checkDumpAndUsageStatsPermission(getContext(), TAG, pw)) return;
|
||||
final DumpFilter filter = DumpFilter.parseFromArguments(args);
|
||||
if (filter.stats) {
|
||||
dumpJson(pw, filter);
|
||||
} else if (filter.proto) {
|
||||
dumpProto(fd, filter);
|
||||
} else if (filter.criticalPriority) {
|
||||
dumpNotificationRecords(pw, filter);
|
||||
} else {
|
||||
dumpImpl(pw, filter);
|
||||
final long token = Binder.clearCallingIdentity();
|
||||
try {
|
||||
if (filter.stats) {
|
||||
dumpJson(pw, filter);
|
||||
} else if (filter.proto) {
|
||||
dumpProto(fd, filter);
|
||||
} else if (filter.criticalPriority) {
|
||||
dumpNotificationRecords(pw, filter);
|
||||
} else {
|
||||
dumpImpl(pw, filter);
|
||||
}
|
||||
} finally {
|
||||
Binder.restoreCallingIdentity(token);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user