Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e83e1979 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Added 'oneway' flags on AIDL where appliable."

parents 99820db9 254c2c99
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -114,6 +114,11 @@ public abstract class AutoFillService extends Service {

    private HandlerCaller mHandlerCaller;

    /**
     * {@inheritDoc}
     *
     * <strong>NOTE: </strong>if overridden, it must call {@code super.onCreate()}.
     */
    @Override
    public void onCreate() {
        super.onCreate();
+1 −1
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@ import java.util.List;
/**
 * @hide
 */
interface IAutoFillCallback {
oneway interface IAutoFillCallback {
    void autofill(in List values);
    void showError(String message);
}
+1 −1
Original line number Diff line number Diff line
@@ -23,7 +23,7 @@ import android.os.Bundle;
 *
 * {@hide}
 */
interface IAutoFillManagerService {
oneway interface IAutoFillManagerService {

    /**
     * Request auto-fill on the top activity of a given user.
+2 −2
Original line number Diff line number Diff line
@@ -25,7 +25,7 @@ import com.android.internal.os.IResultReceiver;
 * @hide
 */
interface IAutoFillService {
    void onConnected();
    void onDisconnected();
    oneway void onConnected();
    oneway void onDisconnected();
    IResultReceiver getAssistReceiver();
}