Home
last modified time | relevance | path

Searched refs:EXTRA_SMART_ACTIONS_ENABLED (Results 1 – 7 of 7) sorted by relevance

/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/
H A DDeleteScreenshotReceiver.java21 import static com.android.systemui.screenshot.ScreenshotController.EXTRA_SMART_ACTIONS_ENABLED;
63 if (intent.getBooleanExtra(EXTRA_SMART_ACTIONS_ENABLED, false)) { in onReceive()
H A DActionProxyReceiver.java26 import static com.android.systemui.screenshot.ScreenshotController.EXTRA_SMART_ACTIONS_ENABLED;
100 if (intent.getBooleanExtra(EXTRA_SMART_ACTIONS_ENABLED, false)) { in onReceive()
H A DSaveImageInBackgroundTask.java271 .putExtra(ScreenshotController.EXTRA_SMART_ACTIONS_ENABLED, in createShareAction()
320 .putExtra(ScreenshotController.EXTRA_SMART_ACTIONS_ENABLED, in createEditAction()
347 .putExtra(ScreenshotController.EXTRA_SMART_ACTIONS_ENABLED,
406 .putExtra(ScreenshotController.EXTRA_SMART_ACTIONS_ENABLED, smartActionsEnabled);
H A DScreenshotController.java227 static final String EXTRA_SMART_ACTIONS_ENABLED = "android:smart_actions_enabled"; field in ScreenshotController
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/screenshot/
H A DScreenshotNotificationSmartActionsTest.java195 assertTrue(bundle.containsKey(ScreenshotController.EXTRA_SMART_ACTIONS_ENABLED)); in testShareActionExtras()
223 assertTrue(bundle.containsKey(ScreenshotController.EXTRA_SMART_ACTIONS_ENABLED)); in testEditActionExtras()
252 assertTrue(bundle.containsKey(ScreenshotController.EXTRA_SMART_ACTIONS_ENABLED)); in testDeleteActionExtras()
H A DActionProxyReceiverTest.java21 import static com.android.systemui.screenshot.ScreenshotController.EXTRA_SMART_ACTIONS_ENABLED;
125 mIntent.putExtra(EXTRA_SMART_ACTIONS_ENABLED, true); in testSmartActionsNotifiedIfEnabled()
H A DDeleteScreenshotReceiverTest.java21 import static com.android.systemui.screenshot.ScreenshotController.EXTRA_SMART_ACTIONS_ENABLED;
127 intent.putExtra(EXTRA_SMART_ACTIONS_ENABLED, true); in testNotifyScreenshotAction()