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

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

Issue 2965593002: Move webrtc/{tools => rtc_tools} (Closed)
Patch Set: Adding back root changes Created 3 years, 5 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
OLDNEW
1 // Describes a chart generated from WebRTC event log data. 1 // Describes a chart generated from WebRTC event log data.
2 syntax = "proto3"; 2 syntax = "proto3";
3 option optimize_for = LITE_RUNTIME; 3 option optimize_for = LITE_RUNTIME;
4 4
5 package webrtc.analytics; 5 package webrtc.analytics;
6 6
7 message ChartStyle { 7 message ChartStyle {
8 enum Type { 8 enum Type {
9 UNDEFINED = 0; 9 UNDEFINED = 0;
10 LINE_CHART = 1; 10 LINE_CHART = 1;
(...skipping 18 matching lines...) Expand all
29 string xaxis_label = 4; 29 string xaxis_label = 4;
30 float yaxis_min = 5; 30 float yaxis_min = 5;
31 float yaxis_max = 6; 31 float yaxis_max = 6;
32 string yaxis_label = 7; 32 string yaxis_label = 7;
33 string title = 8; 33 string title = 8;
34 } 34 }
35 35
36 message ChartCollection { 36 message ChartCollection {
37 repeated Chart charts = 1; 37 repeated Chart charts = 1;
38 } 38 }
OLDNEW
« no previous file with comments | « webrtc/rtc_tools/event_log_visualizer/analyzer.cc ('k') | webrtc/rtc_tools/event_log_visualizer/main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698