Merge "Send a broadcast when turning grayscale off"

This commit is contained in:
TreeHugger Robot
2019-04-01 20:15:24 +00:00
committed by Android (Google) Code Review

View File

@@ -113,8 +113,8 @@ public class GrayscaleConditionController implements ConditionalCardController {
} }
private void sendBroadcast() { private void sendBroadcast() {
final Intent intent = new Intent(); final Intent intent = new Intent(ACTION_GRAYSCALE_CHANGED);
intent.setAction(ACTION_GRAYSCALE_CHANGED); intent.addFlags(Intent.FLAG_RECEIVER_INCLUDE_BACKGROUND);
mAppContext.sendBroadcast(intent, Manifest.permission.CONTROL_DISPLAY_COLOR_TRANSFORMS); mAppContext.sendBroadcast(intent, Manifest.permission.CONTROL_DISPLAY_COLOR_TRANSFORMS);
} }