Revert "AIDL: use typed Map"
This reverts commit 553c027bbf.
Reason for revert: b/197550396
Change-Id: I3c59d132985a3d21a11b55ba1546ed9f46f6e474
This commit is contained in:
@@ -1041,16 +1041,17 @@ public final class ActivityThread extends ClientTransactionHandler {
|
||||
IUiAutomationConnection instrumentationUiConnection, int debugMode,
|
||||
boolean enableBinderTracking, boolean trackAllocation,
|
||||
boolean isRestrictedBackupMode, boolean persistent, Configuration config,
|
||||
CompatibilityInfo compatInfo, Map<String, IBinder> services, Bundle coreSettings,
|
||||
CompatibilityInfo compatInfo, Map services, Bundle coreSettings,
|
||||
String buildSerial, AutofillOptions autofillOptions,
|
||||
ContentCaptureOptions contentCaptureOptions, long[] disabledCompatChanges) {
|
||||
if (services != null) {
|
||||
if (false) {
|
||||
// Test code to make sure the app could see the passed-in services.
|
||||
for (String name : services.keySet()) {
|
||||
if (services.get(name) == null) {
|
||||
for (Object oname : services.keySet()) {
|
||||
if (services.get(oname) == null) {
|
||||
continue; // AM just passed in a null service.
|
||||
}
|
||||
String name = (String) oname;
|
||||
|
||||
// See b/79378449 about the following exemption.
|
||||
switch (name) {
|
||||
|
||||
@@ -72,7 +72,7 @@ oneway interface IApplicationThread {
|
||||
IInstrumentationWatcher testWatcher, IUiAutomationConnection uiAutomationConnection,
|
||||
int debugMode, boolean enableBinderTracking, boolean trackAllocation,
|
||||
boolean restrictedBackupMode, boolean persistent, in Configuration config,
|
||||
in CompatibilityInfo compatInfo, in Map<String, IBinder> services,
|
||||
in CompatibilityInfo compatInfo, in Map services,
|
||||
in Bundle coreSettings, in String buildSerial, in AutofillOptions autofillOptions,
|
||||
in ContentCaptureOptions contentCaptureOptions, in long[] disabledCompatChanges);
|
||||
void runIsolatedEntryPoint(in String entryPoint, in String[] entryPointArgs);
|
||||
|
||||
Reference in New Issue
Block a user