OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 #ifndef WEBRTC_TOOLS_EVENT_LOG_VISUALIZER_PLOT_PYTHON_H_ | 10 #ifndef WEBRTC_RTC_TOOLS_EVENT_LOG_VISUALIZER_PLOT_PYTHON_H_ |
11 #define WEBRTC_TOOLS_EVENT_LOG_VISUALIZER_PLOT_PYTHON_H_ | 11 #define WEBRTC_RTC_TOOLS_EVENT_LOG_VISUALIZER_PLOT_PYTHON_H_ |
12 | 12 |
13 #include "webrtc/tools/event_log_visualizer/plot_base.h" | 13 #include "webrtc/rtc_tools/event_log_visualizer/plot_base.h" |
14 | 14 |
15 namespace webrtc { | 15 namespace webrtc { |
16 namespace plotting { | 16 namespace plotting { |
17 | 17 |
18 class PythonPlot final : public Plot { | 18 class PythonPlot final : public Plot { |
19 public: | 19 public: |
20 PythonPlot(); | 20 PythonPlot(); |
21 ~PythonPlot() override; | 21 ~PythonPlot() override; |
22 void Draw() override; | 22 void Draw() override; |
23 }; | 23 }; |
24 | 24 |
25 class PythonPlotCollection final : public PlotCollection { | 25 class PythonPlotCollection final : public PlotCollection { |
26 public: | 26 public: |
27 PythonPlotCollection(); | 27 PythonPlotCollection(); |
28 ~PythonPlotCollection() override; | 28 ~PythonPlotCollection() override; |
29 void Draw() override; | 29 void Draw() override; |
30 Plot* AppendNewPlot() override; | 30 Plot* AppendNewPlot() override; |
31 }; | 31 }; |
32 | 32 |
33 } // namespace plotting | 33 } // namespace plotting |
34 } // namespace webrtc | 34 } // namespace webrtc |
35 | 35 |
36 #endif // WEBRTC_TOOLS_EVENT_LOG_VISUALIZER_PLOT_PYTHON_H_ | 36 #endif // WEBRTC_RTC_TOOLS_EVENT_LOG_VISUALIZER_PLOT_PYTHON_H_ |
OLD | NEW |