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

Side by Side Diff: chrome/browser/media/webrtc/webrtc_browsertest_perf.cc

Issue 2307083002: Cleanup: move WebRTC related files from chrome/browser/media to chrome/browser/media/webrtc/ (Closed)
Patch Set: Removed file wrongly resuscitated during rebase Created 4 years, 3 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 unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698