Renamed ContentCaptureService.disableContentCaptureServices to disableSelf()

Test: atest CtsContentCaptureServiceTestCases
Test: m update-api

Fixes: 128426640

Change-Id: I54c68ae64969f2e15c0c3a53cb6dbdb59b7931ab
This commit is contained in:
Felipe Leme
2019-03-22 10:29:30 -07:00
parent 8a5b8f7c64
commit bedcd617c1
3 changed files with 5 additions and 5 deletions

View File

@@ -6429,7 +6429,7 @@ package android.service.contentcapture {
public abstract class ContentCaptureService extends android.app.Service {
ctor public ContentCaptureService();
method public final void disableContentCaptureServices();
method public final void disableSelf();
method public void onActivityEvent(@NonNull android.service.contentcapture.ActivityEvent);
method public void onActivitySnapshot(@NonNull android.view.contentcapture.ContentCaptureSessionId, @NonNull android.service.contentcapture.SnapshotData);
method public void onConnected();

View File

@@ -2433,7 +2433,7 @@ package android.service.contentcapture {
public abstract class ContentCaptureService extends android.app.Service {
ctor public ContentCaptureService();
method public final void disableContentCaptureServices();
method public final void disableSelf();
method public void onActivityEvent(@NonNull android.service.contentcapture.ActivityEvent);
method public void onActivitySnapshot(@NonNull android.view.contentcapture.ContentCaptureSessionId, @NonNull android.service.contentcapture.SnapshotData);
method public void onConnected();

View File

@@ -298,12 +298,12 @@ public abstract class ContentCaptureService extends Service {
/**
* Disables the Content Capture service for the given user.
*/
public final void disableContentCaptureServices() {
if (sDebug) Log.d(TAG, "disableContentCaptureServices()");
public final void disableSelf() {
if (sDebug) Log.d(TAG, "disableSelf()");
final IContentCaptureServiceCallback callback = mCallback;
if (callback == null) {
Log.w(TAG, "disableContentCaptureServices(): no server callback");
Log.w(TAG, "disableSelf(): no server callback");
return;
}
try {