Merge "Add the new dumpstate listener methods to implementations"

am: 55c2344bc5

Change-Id: Ia3540a80b79f99c59c108b63c2f464f6ef606987
This commit is contained in:
Nandana Dutt
2019-01-15 06:24:11 -08:00
committed by android-build-merger
2 changed files with 69 additions and 24 deletions

View File

@@ -114,7 +114,6 @@ public class BugreportManager {
}
}
// TODO(b/111441001) Connect up with BugreportListener methods.
private final class DumpstateListener extends IDumpstateListener.Stub
implements DeathRecipient {
@@ -129,6 +128,23 @@ public class BugreportManager {
// TODO(b/111441001): implement
}
@Override
public void onProgress(int progress) throws RemoteException {
// TODO(b/111441001): implement
}
@Override
public void onError(int errorCode) throws RemoteException {
// TODO(b/111441001): implement
}
@Override
public void onFinished(long durationMs, String title, String description)
throws RemoteException {
// TODO(b/111441001): implement
}
// Old methods; should go away
@Override
public void onProgressUpdated(int progress) throws RemoteException {
// TODO(b/111441001): implement