1*344a7f5eSAndroid Build Coastguard Worker// Signature format: 2.0 2*344a7f5eSAndroid Build Coastguard Workerpackage com.android.server.sdksandbox { 3*344a7f5eSAndroid Build Coastguard Worker 4*344a7f5eSAndroid Build Coastguard Worker public interface SdkSandboxManagerLocal { 5*344a7f5eSAndroid Build Coastguard Worker method public boolean canAccessContentProviderFromSdkSandbox(@NonNull android.content.pm.ProviderInfo); 6*344a7f5eSAndroid Build Coastguard Worker method public boolean canRegisterBroadcastReceiver(@NonNull android.content.IntentFilter, int, boolean); 7*344a7f5eSAndroid Build Coastguard Worker method public boolean canSendBroadcast(@NonNull android.content.Intent); 8*344a7f5eSAndroid Build Coastguard Worker method public void enforceAllowedToHostSandboxedActivity(@NonNull android.content.Intent, int, @NonNull String); 9*344a7f5eSAndroid Build Coastguard Worker method @Deprecated public void enforceAllowedToSendBroadcast(@NonNull android.content.Intent); 10*344a7f5eSAndroid Build Coastguard Worker method public void enforceAllowedToStartActivity(@NonNull android.content.Intent); 11*344a7f5eSAndroid Build Coastguard Worker method public void enforceAllowedToStartOrBindService(@NonNull android.content.Intent); 12*344a7f5eSAndroid Build Coastguard Worker method @NonNull public String getSdkSandboxProcessNameForInstrumentation(@NonNull android.content.pm.ApplicationInfo); 13*344a7f5eSAndroid Build Coastguard Worker method public void notifyInstrumentationFinished(@NonNull String, int); 14*344a7f5eSAndroid Build Coastguard Worker method public void notifyInstrumentationStarted(@NonNull String, int); 15*344a7f5eSAndroid Build Coastguard Worker field public static final String SERVICE_INTERFACE = "com.android.sdksandbox.SdkSandboxService"; 16*344a7f5eSAndroid Build Coastguard Worker field public static final String VERIFIER_RECEIVER = "com.android.server.sdksandbox.SdkSandboxVerifierReceiver"; 17*344a7f5eSAndroid Build Coastguard Worker } 18*344a7f5eSAndroid Build Coastguard Worker 19*344a7f5eSAndroid Build Coastguard Worker} 20*344a7f5eSAndroid Build Coastguard Worker 21