summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoraalbert <aalbert@google.com>2023-06-28 09:54:56 -0700
committeraalbert <aalbert@google.com>2023-06-28 09:54:56 -0700
commit580d0f714451ec27c3dc430b497edee072a955f6 (patch)
treee629513f5302efb109e8d3ebe51bbc6deb7da3a7
parent13302108d1d96c29baff5feb45310f1b2cf3ffaf (diff)
downloadanalytics-library-580d0f714451ec27c3dc430b497edee072a955f6.tar.gz
Update studio_stats.proto
Logs-Approval: cl/544083145 Bug: NA Test: existing Change-Id: Ifee068a363c9435c3f082fcfe399a987df6c950f
-rw-r--r--protos/src/main/proto/studio_stats.proto14
1 files changed, 14 insertions, 0 deletions
diff --git a/protos/src/main/proto/studio_stats.proto b/protos/src/main/proto/studio_stats.proto
index 8e6ca40..e24cc99 100644
--- a/protos/src/main/proto/studio_stats.proto
+++ b/protos/src/main/proto/studio_stats.proto
@@ -13567,9 +13567,12 @@ message DebuggerEvent {
optional BreakpointAdded breakpoint_added = 2;
+ optional FramesViewUpdated frames_view_updated = 3;
+
enum Type {
UNKNOWN = 0;
BREAKPOINT_ADDED_EVENT = 1;
+ FRAMES_VIEW_UPDATED = 2;
}
message BreakpointAdded {
@@ -13577,6 +13580,17 @@ message DebuggerEvent {
optional string plugin_type = 2;
optional bool in_session = 3;
}
+
+ message FramesViewUpdated {
+ optional uint64 duration_ms = 1;
+ optional int32 total_frames = 2;
+ repeated FileTypeInfo file_type_infos = 3;
+
+ message FileTypeInfo {
+ optional string file_type = 1;
+ optional int32 num_frames = 2;
+ }
+ }
}
message SoongSyncStats {