summaryrefslogtreecommitdiffstats
path: root/packages/SystemUI
diff options
context:
space:
mode:
authorDianne Hackborn <hackbod@google.com>2010-06-24 17:30:42 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2010-06-24 17:30:42 -0700
commitea8eafad4f5438ec1291d45376959a996d36e15e (patch)
tree9a43826f17176d336a3f6dbf07e41d1922d63a0f /packages/SystemUI
parentcac3126c6109854640266c4807e5aa8e6a87142f (diff)
parent2529a45339b7e02d9d2b813358bcecd144a971ea (diff)
downloadframeworks_base-ea8eafad4f5438ec1291d45376959a996d36e15e.zip
frameworks_base-ea8eafad4f5438ec1291d45376959a996d36e15e.tar.gz
frameworks_base-ea8eafad4f5438ec1291d45376959a996d36e15e.tar.bz2
am 2529a453: Merge "Make bad notifications crash their application." into gingerbread
Merge commit '2529a45339b7e02d9d2b813358bcecd144a971ea' into gingerbread-plus-aosp * commit '2529a45339b7e02d9d2b813358bcecd144a971ea': 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 a7e5e31..801cb91 100644
--- a/packages/SystemUI/src/com/android/systemui/statusbar/PhoneStatusBarService.java
+++ b/packages/SystemUI/src/com/android/systemui/statusbar/PhoneStatusBarService.java
@@ -989,7 +989,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.
}