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

Unified Diff: webrtc/tools/event_log_visualizer/main.cc

Issue 2230153003: Clarify some function names in visualization tool. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/tools/event_log_visualizer/analyzer.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/tools/event_log_visualizer/main.cc
diff --git a/webrtc/tools/event_log_visualizer/main.cc b/webrtc/tools/event_log_visualizer/main.cc
index 27dc59c04259d64a85f4f03e6aa18c242e207d6d..d8d9e25a2661e63e1abb9f5d8e9c25a95483941b 100644
--- a/webrtc/tools/event_log_visualizer/main.cc
+++ b/webrtc/tools/event_log_visualizer/main.cc
@@ -149,11 +149,11 @@ int main(int argc, char* argv[]) {
}
if (FLAGS_plot_all || FLAGS_plot_bwe) {
- analyzer.CreateBweGraph(collection->AppendNewPlot());
+ analyzer.CreateBweSimulationGraph(collection->AppendNewPlot());
}
if (FLAGS_plot_all || FLAGS_plot_network_delay_feedback) {
- analyzer.CreateNetworkDelayFeebackGraph(collection->AppendNewPlot());
+ analyzer.CreateNetworkDelayFeedbackGraph(collection->AppendNewPlot());
}
collection->Draw();
« no previous file with comments | « webrtc/tools/event_log_visualizer/analyzer.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698