diff options
| author | Maurice Lam <yukl@google.com> | 2021-08-04 20:23:41 -0700 |
|---|---|---|
| committer | Maurice Lam <yukl@google.com> | 2021-10-26 20:41:00 -0700 |
| commit | 771c72a607caa96016d93ea6eb7e53ae2bfdfa83 (patch) | |
| tree | f1484c06b16f5d6552436baa6ed9a31e7effa57e /core/java/android/content/Context.java | |
| parent | bbd05d765e4bd5bc22baf74c5c087048d4b2ca8b (diff) | |
Create VirtualDeviceManager
CTS-Coverage-Bug: 194949534
Bug: 194949534
Test: ag/15781910
Change-Id: I06d245d91827390de99b9ff3e514af4294a11476
Diffstat (limited to 'core/java/android/content/Context.java')
| -rw-r--r-- | core/java/android/content/Context.java | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/core/java/android/content/Context.java b/core/java/android/content/Context.java index cfd34174f9e3..bfc43334d7c1 100644 --- a/core/java/android/content/Context.java +++ b/core/java/android/content/Context.java @@ -3799,6 +3799,7 @@ public abstract class Context { //@hide: INCIDENT_COMPANION_SERVICE, //@hide: STATS_COMPANION_SERVICE, COMPANION_DEVICE_SERVICE, + //@hide: VIRTUAL_DEVICE_SERVICE, CROSS_PROFILE_APPS_SERVICE, //@hide: SYSTEM_UPDATE_SERVICE, //@hide: TIME_DETECTOR_SERVICE, @@ -5262,6 +5263,16 @@ public abstract class Context { /** * Use with {@link #getSystemService(String)} to retrieve a + * {@link android.companion.virtual.VirtualDeviceManager} for managing virtual devices. + * + * @see #getSystemService(String) + * @see android.companion.virtual.VirtualDeviceManager + * @hide + */ + public static final String VIRTUAL_DEVICE_SERVICE = "virtualdevice"; + + /** + * Use with {@link #getSystemService(String)} to retrieve a * {@link android.hardware.ConsumerIrManager} for transmitting infrared * signals from the device. * |
