mirror of
https://github.com/github/codeql.git
synced 2026-03-31 04:38:18 +02:00
* Account for changed dataflow graph shape using external flow * Account for BaseBundle only existing as of Android 5 * Properly implement Parcelable, which we previously got away with due to a partial stub * Restore an Android 11 function that had been added to the Android 9 Context class (I won't get into enforcing the difference in this PR)
15 lines
430 B
Java
Generated
15 lines
430 B
Java
Generated
// Generated automatically from android.content.ServiceConnection for testing purposes
|
|
|
|
package android.content;
|
|
|
|
import android.content.ComponentName;
|
|
import android.os.IBinder;
|
|
|
|
public interface ServiceConnection
|
|
{
|
|
default void onBindingDied(ComponentName p0){}
|
|
default void onNullBinding(ComponentName p0){}
|
|
void onServiceConnected(ComponentName p0, IBinder p1);
|
|
void onServiceDisconnected(ComponentName p0);
|
|
}
|