summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author TreeHugger Robot <treehugger-gerrit@google.com> 2020-05-29 09:06:58 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2020-05-29 09:06:58 +0000
commit52a028d6254123e32b9dd3bb077c50151b70381f (patch)
tree3ca46a2d4128ddfe5c27a4fc9e8343e5b79d461f
parent938216c0738696e815e0a5b02e78523f4f34de4c (diff)
parent21c9b4d78e6c8974c8b14488eee0d010b62df953 (diff)
Merge "Remove SdkExtensionStatus atom" into rvc-dev
-rw-r--r--cmds/statsd/src/atoms.proto25
1 files changed, 0 insertions, 25 deletions
diff --git a/cmds/statsd/src/atoms.proto b/cmds/statsd/src/atoms.proto
index 62e156767cb4..c25c3db269f2 100644
--- a/cmds/statsd/src/atoms.proto
+++ b/cmds/statsd/src/atoms.proto
@@ -444,7 +444,6 @@ message Atom {
TvTunerStateChanged tv_tuner_state_changed = 276 [(module) = "framework"];
MediaOutputOpSwitchReported mediaoutput_op_switch_reported =
277 [(module) = "settings"];
- SdkExtensionStatus sdk_extension_status = 354;
// StatsdStats tracks platform atoms with ids upto 500.
// Update StatsdStats::kMaxPushedAtomId when atom ids here approach that value.
@@ -9168,30 +9167,6 @@ message CellBroadcastMessageError {
}
/**
- * Logs when the SDK Extensions test app has polled the current version.
- * This is atom ID 354.
- *
- * Logged from:
- * vendor/google_testing/integration/packages/apps/SdkExtensionsTestApp/
- */
-message SdkExtensionStatus {
- enum ApiCallStatus {
- CALL_NOT_ATTEMPTED = 0;
- CALL_SUCCESSFUL = 1;
- CALL_FAILED = 2;
- }
-
- optional ApiCallStatus result = 1;
-
- // The R extension version, i.e. android.os.ext.SdkExtension.getExtensionVersion(R).
- optional int32 r_extension_version = 2;
-
- // A number identifying which particular symbol's call failed, if any. 0 means no missing symbol.
- // "Failed" here can mean a symbol that wasn't meant to be visible was, or the other way around.
- optional int32 failed_call_symbol = 3;
-}
-
-/**
* Logs when a tune occurs through device's Frontend.
* This is atom ID 276.
*