diff options
author | Glenn Kasten <gkasten@google.com> | 2014-08-13 10:56:38 -0700 |
---|---|---|
committer | Glenn Kasten <gkasten@google.com> | 2014-08-13 13:31:04 -0700 |
commit | 34cc4db180c20569e62db5860c0b206be65b5117 (patch) | |
tree | 8c5e17e84d18b8c1132c2084b6b355828dc14281 /core/java/android/provider | |
parent | 67241476f3fd5d2ae145d64233193f823aa03a6a (diff) | |
download | frameworks_base-34cc4db180c20569e62db5860c0b206be65b5117.zip frameworks_base-34cc4db180c20569e62db5860c0b206be65b5117.tar.gz frameworks_base-34cc4db180c20569e62db5860c0b206be65b5117.tar.bz2 |
Move setting to disable automatic USB routing
This moves the setting from System to Secure per review.
Bug: 16381952
Change-Id: I2497ca66b4f346839490c29295528fac70e94494
Diffstat (limited to 'core/java/android/provider')
-rw-r--r-- | core/java/android/provider/Settings.java | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/core/java/android/provider/Settings.java b/core/java/android/provider/Settings.java index 9a41e20..8886559 100644 --- a/core/java/android/provider/Settings.java +++ b/core/java/android/provider/Settings.java @@ -2364,16 +2364,6 @@ public final class Settings { public static final String VIBRATE_WHEN_RINGING = "vibrate_when_ringing"; /** - * Whether automatic routing of system audio to USB audio peripheral is disabled. - * The value is boolean (1 or 0), where 1 means automatic routing is disabled, - * and 0 means automatic routing is enabled. - * - * @hide - */ - public static final String USB_AUDIO_AUTOMATIC_ROUTING_DISABLED = - "usb_audio_automatic_routing_disabled"; - - /** * Whether the audible DTMF tones are played by the dialer when dialing. The value is * boolean (1 or 0). */ @@ -4745,6 +4735,16 @@ public final class Settings { public static final String TV_INPUT_CUSTOM_LABELS = "tv_input_custom_labels"; /** + * Whether automatic routing of system audio to USB audio peripheral is disabled. + * The value is boolean (1 or 0), where 1 means automatic routing is disabled, + * and 0 means automatic routing is enabled. + * + * @hide + */ + public static final String USB_AUDIO_AUTOMATIC_ROUTING_DISABLED = + "usb_audio_automatic_routing_disabled"; + + /** * This are the settings to be backed up. * * NOTE: Settings are backed up and restored in the order they appear |