Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(110)

Side by Side Diff: webrtc/tools/event_log_visualizer/chart.proto

Issue 2310403002: Renamed and restructured the protobuf definitions for the rtc_event_log graphs. (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/tools/BUILD.gn ('k') | webrtc/tools/event_log_visualizer/graph.proto » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Describes a chart generated from WebRTC event log data.
2 syntax = "proto3";
3 option optimize_for = LITE_RUNTIME;
4
5 package webrtc.analytics;
6
7 message ChartStyle {
8 enum Type {
9 UNDEFINED = 0;
10 LINE_CHART = 1;
11 BAR_CHART = 2;
12 }
13 }
14
15 message DataSet {
16 repeated float x_values = 1;
17 repeated float y_values = 2;
18 string label = 3;
19 ChartStyle.Type style = 4;
20 bool highlight_points = 5;
21 }
22
23 message Chart {
24 repeated DataSet data_sets = 1;
25 float xaxis_min = 2;
26 float xaxis_max = 3;
27 string xaxis_label = 4;
28 float yaxis_min = 5;
29 float yaxis_max = 6;
30 string yaxis_label = 7;
31 string title = 8;
32 }
33
34 message ChartCollection {
35 repeated Chart charts = 1;
36 }
OLDNEW
« no previous file with comments | « webrtc/tools/BUILD.gn ('k') | webrtc/tools/event_log_visualizer/graph.proto » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698