From a1ff637467e3c88caa627b9b65cec4220bd0b292 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Stemmer?= Date: Mon, 15 Jun 2020 16:25:45 +0000 Subject: [PATCH] Update javadoc in IBackupAgent.aidl Remove the token param from the doBackup() javadoc since the token parameter no longer exists, and change the quota params to match the actual parameter name. Bug: 136795960 Test: Did not run tests, this is just a Javadoc change Change-Id: Ife2ab3a0cf11ebea9bf74581d706322c01ad6f1c --- core/java/android/app/IBackupAgent.aidl | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/core/java/android/app/IBackupAgent.aidl b/core/java/android/app/IBackupAgent.aidl index 254657e26f3a9..37c5cabc23769 100644 --- a/core/java/android/app/IBackupAgent.aidl +++ b/core/java/android/app/IBackupAgent.aidl @@ -42,11 +42,7 @@ oneway interface IBackupAgent { * @param newState Read-write file, empty when onBackup() is called, * where the new state blob is to be recorded. * - * @param quota Quota reported by the transport for this backup operation (in bytes). - * - * @param token Opaque token identifying this transaction. This must - * be echoed back to the backup service binder once the new - * data has been written to the data and newState files. + * @param quotaBytes Quota reported by the transport for this backup operation (in bytes). * * @param callbackBinder Binder on which to indicate operation completion. * @@ -106,7 +102,7 @@ oneway interface IBackupAgent { * The data must be formatted correctly for the resulting archive to be * legitimate, so that will be tightly controlled by the available API. * - * @param quota Quota reported by the transport for this backup operation (in bytes). + * @param quotaBytes Quota reported by the transport for this backup operation (in bytes). * * @param token Opaque token identifying this transaction. This must * be echoed back to the backup service binder once the agent is