summaryrefslogtreecommitdiff
path: root/startop/iorap
diff options
context:
space:
mode:
authorJeffrey Huang <jeffreyhuang@google.com>2019-12-05 11:28:11 -0800
committerJeffrey Huang <jeffreyhuang@google.com>2019-12-05 11:28:11 -0800
commitcb78285b81eb731bf75a7cd869657505caec06ae (patch)
treea802f64b4f75e0fc118eeb45e036c7bb1eb13424 /startop/iorap
parente880831db9271cec800b704b61a39b01d20b2d34 (diff)
Rename writeToProto to be dumpDebug
We want to eventually migrate some of these APIs to be @SystemApi for mainline modules. The #dumpDebug name is more appropriate than #writeToProto. Bug: 142279786 Test: Manual Change-Id: I60793e91cedf6b720d4ecef6a8484f4fed4ff30f
Diffstat (limited to 'startop/iorap')
-rw-r--r--startop/iorap/src/com/google/android/startop/iorap/AppLaunchEvent.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/startop/iorap/src/com/google/android/startop/iorap/AppLaunchEvent.java b/startop/iorap/src/com/google/android/startop/iorap/AppLaunchEvent.java
index 59f4d56d3f46..8263e0af4422 100644
--- a/startop/iorap/src/com/google/android/startop/iorap/AppLaunchEvent.java
+++ b/startop/iorap/src/com/google/android/startop/iorap/AppLaunchEvent.java
@@ -439,7 +439,7 @@ public abstract class AppLaunchEvent implements Parcelable {
final ProtoOutputStream protoOutputStream =
new ProtoOutputStream(INTENT_PROTO_CHUNK_SIZE);
// Write this data out as the top-most IntentProto (i.e. it is not a sub-object).
- intent.writeToProto(protoOutputStream);
+ intent.dumpDebug(protoOutputStream);
final byte[] bytes = protoOutputStream.getBytes();
p.writeByteArray(bytes);