| 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 #include "chrome/browser/media/webrtc_browsertest_perf.h" | 5 #include "chrome/browser/media/webrtc/webrtc_browsertest_perf.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 | 8 |
| 9 #include "base/strings/stringprintf.h" | 9 #include "base/strings/stringprintf.h" |
| 10 #include "base/values.h" | 10 #include "base/values.h" |
| 11 #include "chrome/test/base/in_process_browser_test.h" | 11 #include "chrome/test/base/in_process_browser_test.h" |
| 12 #include "testing/perf/perf_test.h" | 12 #include "testing/perf/perf_test.h" |
| 13 | 13 |
| 14 static std::string Statistic(const std::string& statistic, | 14 static std::string Statistic(const std::string& statistic, |
| 15 const std::string& bucket) { | 15 const std::string& bucket) { |
| (...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 272 std::set<std::string>::const_iterator ssrc_iterator = | 272 std::set<std::string>::const_iterator ssrc_iterator = |
| 273 ssrc_identifiers.begin(); | 273 ssrc_identifiers.begin(); |
| 274 for (; ssrc_iterator != ssrc_identifiers.end(); ++ssrc_iterator) { | 274 for (; ssrc_iterator != ssrc_identifiers.end(); ++ssrc_iterator) { |
| 275 const std::string& ssrc = *ssrc_iterator; | 275 const std::string& ssrc = *ssrc_iterator; |
| 276 MaybePrintResultsForAudioReceive(ssrc, pc_dict, modifier); | 276 MaybePrintResultsForAudioReceive(ssrc, pc_dict, modifier); |
| 277 MaybePrintResultsForVideoReceive(ssrc, pc_dict, video_modifier); | 277 MaybePrintResultsForVideoReceive(ssrc, pc_dict, video_modifier); |
| 278 } | 278 } |
| 279 } | 279 } |
| 280 | 280 |
| 281 } // namespace test | 281 } // namespace test |
| OLD | NEW |