diff options
author | Jorim Jaggi <jjaggi@google.com> | 2015-04-30 11:49:29 -0700 |
---|---|---|
committer | Jorim Jaggi <jjaggi@google.com> | 2015-05-01 13:33:38 -0700 |
commit | 5f560d056243638a83a4e7770035fdb66004c9d7 (patch) | |
tree | 23e0d0ca97b0784421ddd3f5c7798f351b399a6b /services/voiceinteraction/java | |
parent | cf2999aacf45506ff6f9c2876bfd4fd5a99fc394 (diff) | |
download | frameworks_base-5f560d056243638a83a4e7770035fdb66004c9d7.zip frameworks_base-5f560d056243638a83a4e7770035fdb66004c9d7.tar.gz frameworks_base-5f560d056243638a83a4e7770035fdb66004c9d7.tar.bz2 |
Rename supportsAssistGesture to supportsAssist
Bug: 20642759
Change-Id: Idddc786980244cc94570d04fd414540bbad60448
Diffstat (limited to 'services/voiceinteraction/java')
-rw-r--r-- | services/voiceinteraction/java/com/android/server/voiceinteraction/VoiceInteractionManagerService.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/services/voiceinteraction/java/com/android/server/voiceinteraction/VoiceInteractionManagerService.java b/services/voiceinteraction/java/com/android/server/voiceinteraction/VoiceInteractionManagerService.java index 81c5e6a..56b2fa5 100644 --- a/services/voiceinteraction/java/com/android/server/voiceinteraction/VoiceInteractionManagerService.java +++ b/services/voiceinteraction/java/com/android/server/voiceinteraction/VoiceInteractionManagerService.java @@ -734,10 +734,10 @@ public class VoiceInteractionManagerService extends SystemService { } @Override - public boolean activeServiceSupportsAssistGesture() { + public boolean activeServiceSupportsAssist() { enforceCallingPermission(Manifest.permission.ACCESS_VOICE_INTERACTION_SERVICE); synchronized (this) { - return mImpl != null && mImpl.mInfo.getSupportsAssistGesture(); + return mImpl != null && mImpl.mInfo.getSupportsAssist(); } } |