| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_MEDIA_WEBRTC_BROWSERTEST_PERF_H_ | 5 #ifndef CHROME_BROWSER_MEDIA_WEBRTC_BROWSERTEST_PERF_H_ |
| 6 #define CHROME_BROWSER_MEDIA_WEBRTC_BROWSERTEST_PERF_H_ | 6 #define CHROME_BROWSER_MEDIA_WEBRTC_BROWSERTEST_PERF_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 namespace base { | 10 namespace base { |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 // the modifier is '_oneway', the rtt stat will be logged as goog_rtt in | 25 // the modifier is '_oneway', the rtt stat will be logged as goog_rtt in |
| 26 // the video_tx_oneway bucket. | 26 // the video_tx_oneway bucket. |
| 27 // If |video_codec| is a non-empty string, the codec name is appended last for | 27 // If |video_codec| is a non-empty string, the codec name is appended last for |
| 28 // video metrics, e.g. 'video_tx_oneway_VP9'. | 28 // video metrics, e.g. 'video_tx_oneway_VP9'. |
| 29 void PrintBweForVideoMetrics(const base::DictionaryValue& pc_dict, | 29 void PrintBweForVideoMetrics(const base::DictionaryValue& pc_dict, |
| 30 const std::string& modifier, | 30 const std::string& modifier, |
| 31 const std::string& video_codec); | 31 const std::string& video_codec); |
| 32 void PrintMetricsForAllStreams(const base::DictionaryValue& pc_dict, | 32 void PrintMetricsForAllStreams(const base::DictionaryValue& pc_dict, |
| 33 const std::string& modifier, | 33 const std::string& modifier, |
| 34 const std::string& video_codec); | 34 const std::string& video_codec); |
| 35 void PrintMetricsForSendStreams(const base::DictionaryValue& pc_dict, |
| 36 const std::string& modifier, |
| 37 const std::string& video_codec); |
| 38 void PrintMetricsForRecvStreams(const base::DictionaryValue& pc_dict, |
| 39 const std::string& modifier, |
| 40 const std::string& video_codec); |
| 35 | 41 |
| 36 } // namespace test | 42 } // namespace test |
| 37 | 43 |
| 38 #endif // CHROME_BROWSER_MEDIA_WEBRTC_BROWSERTEST_PERF_H_ | 44 #endif // CHROME_BROWSER_MEDIA_WEBRTC_BROWSERTEST_PERF_H_ |
| OLD | NEW |