am b9be8eff: am ffc89899: Merge "Don\'t pulse LED on new notification unless notification has LED flag set" into ics-mr1

* commit 'b9be8eff222d9b70079dd53d0d61de229d8d7914':
  Don't pulse LED on new notification unless notification has LED flag set
This commit is contained in:
Mike Lockwood
2012-02-14 12:42:42 -08:00
committed by Android Git Automerger

View File

@ -767,8 +767,10 @@ public class NotificationManagerService extends INotificationManager.Stub
long identity = Binder.clearCallingIdentity();
try {
r.statusBarKey = mStatusBar.addNotification(n);
if ((n.notification.flags & Notification.FLAG_SHOW_LIGHTS) != 0) {
mAttentionLight.pulse();
}
}
finally {
Binder.restoreCallingIdentity(identity);
}