chromium/base/android/java/src/org/chromium/base/process_launcher/ChildServiceConnectionDelegate.java

// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

package org.chromium.base.process_launcher;

import android.os.IBinder;

/**
 * Delegate that ChildServiceConnection should call when the service connects/disconnects.
 * These callbacks are expected to happen on a background thread.
 */
/* package */ interface ChildServiceConnectionDelegate {
    void onServiceConnected(IBinder service);

    void onServiceDisconnected();
}