diff options
| author | Nandana Dutt <nandana@google.com> | 2019-01-15 06:24:11 -0800 |
|---|---|---|
| committer | android-build-merger <android-build-merger@google.com> | 2019-01-15 06:24:11 -0800 |
| commit | 4524abd3185db8f8d44f2075a05abf31c46b0f4d (patch) | |
| tree | 9435ccbbc0cbdebe1c569171e7250fac986e1da6 /core/java | |
| parent | 8f4c8a61993776546a24266d32e5cbc60b1b0f19 (diff) | |
| parent | 55c2344bc5a70f490bb6875f5d17e69a0ac2537f (diff) | |
Merge "Add the new dumpstate listener methods to implementations"
am: 55c2344bc5
Change-Id: Ia3540a80b79f99c59c108b63c2f464f6ef606987
Diffstat (limited to 'core/java')
| -rw-r--r-- | core/java/android/os/BugreportManager.java | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/core/java/android/os/BugreportManager.java b/core/java/android/os/BugreportManager.java index 1343d24d0d94..b15a4d3170b3 100644 --- a/core/java/android/os/BugreportManager.java +++ b/core/java/android/os/BugreportManager.java @@ -114,7 +114,6 @@ public class BugreportManager { } } - // TODO(b/111441001) Connect up with BugreportListener methods. private final class DumpstateListener extends IDumpstateListener.Stub implements DeathRecipient { @@ -130,6 +129,23 @@ public class BugreportManager { } @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 } |
