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

Unified Diff: webrtc/tools/event_log_visualizer/plot_python.h

Issue 2179223003: Convenience functions to set axis properties in visualization tool. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Change literal type to avoid VC++ compile warning Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/tools/event_log_visualizer/plot_base.cc ('k') | webrtc/tools/event_log_visualizer/plot_python.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/tools/event_log_visualizer/plot_python.h
diff --git a/webrtc/tools/event_log_visualizer/plot_python.h b/webrtc/tools/event_log_visualizer/plot_python.h
index 8d63f952eb6664e5880d3682e92723ecd7c23565..2bf445a43e7c278bc77630ee522588d202fd1584 100644
--- a/webrtc/tools/event_log_visualizer/plot_python.h
+++ b/webrtc/tools/event_log_visualizer/plot_python.h
@@ -19,15 +19,15 @@ class PythonPlot final : public Plot {
public:
PythonPlot();
~PythonPlot() override;
- void draw() override;
+ void Draw() override;
};
class PythonPlotCollection final : public PlotCollection {
public:
PythonPlotCollection();
~PythonPlotCollection() override;
- void draw() override;
- Plot* append_new_plot() override;
+ void Draw() override;
+ Plot* AppendNewPlot() override;
};
} // namespace plotting
« no previous file with comments | « webrtc/tools/event_log_visualizer/plot_base.cc ('k') | webrtc/tools/event_log_visualizer/plot_python.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698