summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2024-05-30 07:15:36 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2024-05-30 07:15:36 +0000
commit8cf2c4cfcc39ad9052812f8b2f9667b572d83e84 (patch)
tree5ffeca97866dde6bf734a2fd372ccdad050a3634
parente8a18e428bac49e1063b0cc0eef71f8ebf1d33c4 (diff)
parentfc11b03978a34b6dde3ab17abb403714f9b00ae9 (diff)
downloadanalytics-library-8cf2c4cfcc39ad9052812f8b2f9667b572d83e84.tar.gz
Snap for 11903900 from fc11b03978a34b6dde3ab17abb403714f9b00ae9 to studio-koala-feature-release
Change-Id: Ia72aed5d92bd1a7142be10ea619ec97287fb8768
-rw-r--r--protos/src/main/proto/studio_stats.proto20
1 files changed, 20 insertions, 0 deletions
diff --git a/protos/src/main/proto/studio_stats.proto b/protos/src/main/proto/studio_stats.proto
index 7c36e13..6f61a1e 100644
--- a/protos/src/main/proto/studio_stats.proto
+++ b/protos/src/main/proto/studio_stats.proto
@@ -2543,6 +2543,7 @@ message EmulatorAvdInfo {
PIXEL_7A = 37;
PIXEL_8 = 38;
PIXEL_8_PRO = 39;
+ PIXEL_8A = 40;
}
// Name of the AVD. Deprecated as it could potentially contain PII.
optional string name = 1 [deprecated = true];
@@ -12705,6 +12706,9 @@ message UiDeviceSettingsEvent {
// Gesture Navigation was changed
GESTURE_NAVIGATION = 8;
+
+ // Debug Layout was changed
+ DEBUG_LAYOUT = 9;
}
}
@@ -14501,7 +14505,13 @@ message SmlCompletionEvent {
message SmlTransformEvent {
message TransformRequest {
+ // Full file size if it's attached to a request.
+ // In case of multiple files it would be a sum of all sizes.
optional uint32 context_length = 1;
+ // A size of a code snippet passed to models:
+ // It could be a user selection in case of simple transform,
+ // or a region extended to the closest declaration.
+ optional uint32 selection_length = 2;
}
message TransformResult {
@@ -14535,6 +14545,16 @@ message SmlTransformEvent {
TransformShown shown = 3;
TransformAccepted accepted = 4;
}
+
+ enum TransformKind {
+ UNKNOWN = 0;
+ CUSTOM = 1;
+ DOCUMENT = 2;
+ }
+
+ // The kind of transform, which will be used to differentiate
+ // metrics for Document action, Custom transforms etc.
+ optional TransformKind transform_kind = 5;
}
message SmlChatBotEvent {