Merge "profcollect: Update binder method names" am: 453966a20b am: f388bf48ac am: 1238f9f6fa

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1593776

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: I26d5ce2f8ce0d7315619ab444146b94eaca29147
This commit is contained in:
Yi Kong
2021-03-03 13:31:15 +00:00
committed by Automerger Merge Worker

View File

@@ -102,7 +102,7 @@ public final class ProfcollectForwardingService extends SystemService {
return false;
}
try {
return !mIProfcollect.GetSupportedProvider().isEmpty();
return !mIProfcollect.get_supported_provider().isEmpty();
} catch (RemoteException e) {
Log.e(LOG_TAG, e.getMessage());
return false;
@@ -191,7 +191,7 @@ public final class ProfcollectForwardingService extends SystemService {
}
try {
sSelfService.mIProfcollect.ProcessProfile();
sSelfService.mIProfcollect.process(false);
} catch (RemoteException e) {
Log.e(LOG_TAG, e.getMessage());
}
@@ -234,7 +234,7 @@ public final class ProfcollectForwardingService extends SystemService {
if (DEBUG) {
Log.d(LOG_TAG, "Tracing on app launch event: " + packageName);
}
mIProfcollect.TraceOnce("applaunch");
mIProfcollect.trace_once("applaunch");
} catch (RemoteException e) {
Log.e(LOG_TAG, e.getMessage());
}
@@ -296,7 +296,7 @@ public final class ProfcollectForwardingService extends SystemService {
}
try {
mIProfcollect.CreateProfileReport();
mIProfcollect.report();
} catch (RemoteException e) {
Log.e(LOG_TAG, e.getMessage());
}