Remove enum values from method for SandboxApiCalled
Remove SEND_DATA enum, now that the API is being removed.
Remove LOAD_SANDBOX_AND_SDK enum as latency for each stage will be measured separately.
Bug: b/244289877
Test: Build passed
Change-Id: I44072dfdb5bc12f6678bd08157da9714ad66d4d9
diff --git a/stats/atoms.proto b/stats/atoms.proto
index c988562..fb7fc5d 100644
--- a/stats/atoms.proto
+++ b/stats/atoms.proto
@@ -22242,17 +22242,18 @@
}
// Logs when an API call from app to sandbox process is made
-// Next ID: 5
message SandboxApiCalled {
+ // Next ID: 8
enum Method {
METHOD_UNSPECIFIED = 0;
LOAD_SDK = 1;
- LOAD_SANDBOX_AND_SDK = 2;
REQUEST_SURFACE_PACKAGE = 3;
- SEND_DATA = 4;
GET_LOADED_SDK_LIBRARIES_INFO = 5;
SYNC_DATA_FROM_CLIENT = 6;
UNLOAD_SDK = 7;
+
+ LOAD_SANDBOX_AND_SDK = 2 [deprecated = true];
+ SEND_DATA = 4 [deprecated = true];
}
// The method which was called.
optional Method method = 1;