webrtc/rtc_tools/rtc_event_log_visualizer/proto/chart_enums.proto
Björn Terelius 54a6149b42 C-style bindings around RTC event log analyzer (2).
Parses log, calls analyzer and populates output.
Currently only outputs two charts. Chart selection to be added in a followup.

Bug: None
Change-Id: I960cff15a5935a638a5d979a71230ad598083596
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/324680
Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org>
Commit-Queue: Björn Terelius <terelius@webrtc.org>
Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org>
Auto-Submit: Björn Terelius <terelius@webrtc.org>
Cr-Commit-Position: refs/heads/main@{#41000}
2023-10-24 18:16:04 +00:00

14 lines
277 B
Protocol Buffer

syntax = "proto3";
// Contains enums used as part of chart.proto
option optimize_for = LITE_RUNTIME;
package webrtc.analytics;
message ChartStyle {
enum Type {
UNDEFINED = 0;
LINE_CHART = 1;
BAR_CHART = 2;
LINE_STEP_CHART = 3;
SCATTER_CHART = 4;
};
};