summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2024-05-16 07:15:36 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2024-05-16 07:15:36 +0000
commit5f839a812a5e7829b4443ce12a75bd8b720c9e74 (patch)
tree1f58f334da2e10243ac0656d9ec79918b42b00bc
parentc7402912bc478a825f95d0bd1a7a5cafdbb9f91c (diff)
parente8da49ebd4e4a34f57c94d87e26cd5c7b1d960cf (diff)
downloadanalytics-library-5f839a812a5e7829b4443ce12a75bd8b720c9e74.tar.gz
Snap for 11848703 from e8da49ebd4e4a34f57c94d87e26cd5c7b1d960cf to studio-koala-feature-release
Change-Id: I82cddfd8b2e0959c9f103a13b555372b87f6bd68
-rw-r--r--protos/src/main/proto/analytics_enums.proto3
-rw-r--r--protos/src/main/proto/studio_stats.proto6
2 files changed, 8 insertions, 1 deletions
diff --git a/protos/src/main/proto/analytics_enums.proto b/protos/src/main/proto/analytics_enums.proto
index 60db474..d71ee5b 100644
--- a/protos/src/main/proto/analytics_enums.proto
+++ b/protos/src/main/proto/analytics_enums.proto
@@ -602,7 +602,7 @@ enum BooleanOption {
LINT_ANALYSIS_PER_COMPONENT = 172;
ENABLE_VCS_INFO = 173;
LINT_BASELINE_OMIT_LINE_NUMBERS = 174;
- LINT_USE_K2_UAST = 175;
+ DEPRECATED_LINT_USE_K2_UAST = 175 [deprecated=true];
USE_FULL_CLASSPATH_FOR_DEXING_TRANSFORM = 176;
ANDROID_TEST_LEAVE_APKS_INSTALLED_AFTER_RUN = 177;
IDE_AVOID_TASK_REGISTRATION = 178;
@@ -628,6 +628,7 @@ enum OptionalBooleanOption {
INTERNAL_ONLY_ENABLE_R8 = 8;
DISABLE_AUTOMATIC_COMPONENT_CREATION = 9;
ENABLE_API_MODELING_AND_GLOBAL_SYNTHETICS = 10;
+ LINT_USE_K2_UAST = 11;
}
enum IntegerOption {
diff --git a/protos/src/main/proto/studio_stats.proto b/protos/src/main/proto/studio_stats.proto
index 1ce5798..5ee5d07 100644
--- a/protos/src/main/proto/studio_stats.proto
+++ b/protos/src/main/proto/studio_stats.proto
@@ -10093,6 +10093,7 @@ enum EditorFileType {
XML_RES_XML = 23;
KOTLIN_COMPOSE = 24;
TOML = 25;
+ CMAKE = 26;
}
message TypingLatencyStats {
@@ -10780,6 +10781,9 @@ message PreviewRefreshEvent {
optional float render_quality = 3;
// Time taken by the render, including inflation time when corresponds
optional int32 render_time_millis = 4;
+ // Simple class name of the exception thrown in a render error, e.g.
+ // IllegalStateException or ClassNotFoundException
+ optional string render_exception_simple_name = 5;
}
}
@@ -14647,6 +14651,7 @@ message SmlChatBotEvent {
// has_error indicates that the code snippet was parsed successfully,
// but contains one or more syntax errors.
optional bool has_error = 4;
+ optional bool did_timeout = 5;
}
enum CodeDomain {
@@ -14673,6 +14678,7 @@ message SmlChatBotEvent {
repeated CodeDomain code_domains = 4 [packed = true];
// types of hallucinations detected in the snippet
repeated HallucinationType hallucination_types = 5 [packed = true];
+ optional bool did_timeout = 6;
}
oneof content {