From 05e0705177d2078fa9f940ce6df723312cfab976 Mon Sep 17 00:00:00 2001 From: John Spurlock Date: Mon, 1 Jun 2015 10:56:42 -0400 Subject: Battery saver: limit notification intents to system UI. Ensure the actions taken by the HUN warnings came from sysui. Bug: 20918350 Change-Id: I8dc02ebdfcc1f60d068bea43e10e350dc566728d --- .../src/com/android/systemui/power/PowerNotificationWarnings.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'packages') diff --git a/packages/SystemUI/src/com/android/systemui/power/PowerNotificationWarnings.java b/packages/SystemUI/src/com/android/systemui/power/PowerNotificationWarnings.java index af1f795..a12a3f1 100644 --- a/packages/SystemUI/src/com/android/systemui/power/PowerNotificationWarnings.java +++ b/packages/SystemUI/src/com/android/systemui/power/PowerNotificationWarnings.java @@ -376,7 +376,8 @@ public class PowerNotificationWarnings implements PowerUI.WarningsUI { filter.addAction(ACTION_START_SAVER); filter.addAction(ACTION_STOP_SAVER); filter.addAction(ACTION_DISMISSED_WARNING); - mContext.registerReceiverAsUser(this, UserHandle.ALL, filter, null, mHandler); + mContext.registerReceiverAsUser(this, UserHandle.ALL, filter, + android.Manifest.permission.STATUS_BAR_SERVICE, mHandler); } @Override -- cgit v1.1