summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--api/current.txt4
-rw-r--r--api/system-current.txt4
-rw-r--r--api/test-current.txt4
-rw-r--r--telecomm/java/android/telecom/CallScreeningService.java4
4 files changed, 8 insertions, 8 deletions
diff --git a/api/current.txt b/api/current.txt
index 50f8b21919c7..a311eeb4d78f 100644
--- a/api/current.txt
+++ b/api/current.txt
@@ -35427,14 +35427,14 @@ package android.telecom {
field public static final java.lang.String SERVICE_INTERFACE = "android.telecom.CallScreeningService";
}
- public class CallScreeningService.CallResponse {
+ public static class CallScreeningService.CallResponse {
method public boolean getDisallowCall();
method public boolean getRejectCall();
method public boolean getSkipCallLog();
method public boolean getSkipNotification();
}
- public class CallScreeningService.CallResponse.Builder {
+ public static class CallScreeningService.CallResponse.Builder {
ctor public CallScreeningService.CallResponse.Builder();
method public android.telecom.CallScreeningService.CallResponse build();
method public android.telecom.CallScreeningService.CallResponse.Builder setDisallowCall(boolean);
diff --git a/api/system-current.txt b/api/system-current.txt
index b876ca95715e..40c62acf0c97 100644
--- a/api/system-current.txt
+++ b/api/system-current.txt
@@ -37735,14 +37735,14 @@ package android.telecom {
field public static final java.lang.String SERVICE_INTERFACE = "android.telecom.CallScreeningService";
}
- public class CallScreeningService.CallResponse {
+ public static class CallScreeningService.CallResponse {
method public boolean getDisallowCall();
method public boolean getRejectCall();
method public boolean getSkipCallLog();
method public boolean getSkipNotification();
}
- public class CallScreeningService.CallResponse.Builder {
+ public static class CallScreeningService.CallResponse.Builder {
ctor public CallScreeningService.CallResponse.Builder();
method public android.telecom.CallScreeningService.CallResponse build();
method public android.telecom.CallScreeningService.CallResponse.Builder setDisallowCall(boolean);
diff --git a/api/test-current.txt b/api/test-current.txt
index 57332a295b21..d28c463a559b 100644
--- a/api/test-current.txt
+++ b/api/test-current.txt
@@ -35441,14 +35441,14 @@ package android.telecom {
field public static final java.lang.String SERVICE_INTERFACE = "android.telecom.CallScreeningService";
}
- public class CallScreeningService.CallResponse {
+ public static class CallScreeningService.CallResponse {
method public boolean getDisallowCall();
method public boolean getRejectCall();
method public boolean getSkipCallLog();
method public boolean getSkipNotification();
}
- public class CallScreeningService.CallResponse.Builder {
+ public static class CallScreeningService.CallResponse.Builder {
ctor public CallScreeningService.CallResponse.Builder();
method public android.telecom.CallScreeningService.CallResponse build();
method public android.telecom.CallScreeningService.CallResponse.Builder setDisallowCall(boolean);
diff --git a/telecomm/java/android/telecom/CallScreeningService.java b/telecomm/java/android/telecom/CallScreeningService.java
index 1b6e16221f9b..f62b170989ad 100644
--- a/telecomm/java/android/telecom/CallScreeningService.java
+++ b/telecomm/java/android/telecom/CallScreeningService.java
@@ -89,7 +89,7 @@ public abstract class CallScreeningService extends Service {
/*
* Information about how to respond to an incoming call.
*/
- public class CallResponse {
+ public static class CallResponse {
private final boolean mShouldDisallowCall;
private final boolean mShouldRejectCall;
private final boolean mShouldSkipCallLog;
@@ -140,7 +140,7 @@ public abstract class CallScreeningService extends Service {
return mShouldSkipNotification;
}
- public class Builder {
+ public static class Builder {
private boolean mShouldDisallowCall;
private boolean mShouldRejectCall;
private boolean mShouldSkipCallLog;