summaryrefslogtreecommitdiffstats
path: root/packages/SystemUI
diff options
context:
space:
mode:
authorDianne Hackborn <hackbod@google.com>2010-06-24 17:33:14 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2010-06-24 17:33:14 -0700
commit8bb998d52c118d361390af89b14dd67a4563509a (patch)
treec5397e2952e0d47d191357922e72e52bcfea86d5 /packages/SystemUI
parent7acbc1f1e7778270d737b893581cfbb0e9d90e5c (diff)
parentea8eafad4f5438ec1291d45376959a996d36e15e (diff)
downloadframeworks_base-8bb998d52c118d361390af89b14dd67a4563509a.zip
frameworks_base-8bb998d52c118d361390af89b14dd67a4563509a.tar.gz
frameworks_base-8bb998d52c118d361390af89b14dd67a4563509a.tar.bz2
am ea8eafad: am 2529a453: Merge "Make bad notifications crash their application." into gingerbread
Merge commit 'ea8eafad4f5438ec1291d45376959a996d36e15e' * commit 'ea8eafad4f5438ec1291d45376959a996d36e15e': Make bad notifications crash their application.
Diffstat (limited to 'packages/SystemUI')
-rw-r--r--packages/SystemUI/src/com/android/systemui/statusbar/PhoneStatusBarService.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/PhoneStatusBarService.java b/packages/SystemUI/src/com/android/systemui/statusbar/PhoneStatusBarService.java
index 4a0c001..8ddad86 100644
--- a/packages/SystemUI/src/com/android/systemui/statusbar/PhoneStatusBarService.java
+++ b/packages/SystemUI/src/com/android/systemui/statusbar/PhoneStatusBarService.java
@@ -990,7 +990,7 @@ public class PhoneStatusBarService extends StatusBarService {
void handleNotificationError(IBinder key, StatusBarNotification n, String message) {
removeNotification(key);
try {
- mBarService.onNotificationError(n.pkg, n.tag, n.id, message);
+ mBarService.onNotificationError(n.pkg, n.tag, n.id, n.uid, n.initialPid, message);
} catch (RemoteException ex) {
// The end is nigh.
}