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

Side by Side Diff: chrome/browser/media/chrome_webrtc_perf_browsertest.cc

Issue 486843004: Change base/file_utils.h includes to base/files/file_utils.h in chrome/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix bad merge Created 6 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 | Annotate | Revision Log
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "base/command_line.h" 5 #include "base/command_line.h"
6 #include "base/file_util.h" 6 #include "base/files/file_util.h"
7 #include "base/json/json_reader.h" 7 #include "base/json/json_reader.h"
8 #include "base/memory/scoped_ptr.h" 8 #include "base/memory/scoped_ptr.h"
9 #include "base/strings/string_split.h" 9 #include "base/strings/string_split.h"
10 #include "base/strings/stringprintf.h" 10 #include "base/strings/stringprintf.h"
11 #include "base/test/test_timeouts.h" 11 #include "base/test/test_timeouts.h"
12 #include "base/time/time.h" 12 #include "base/time/time.h"
13 #include "chrome/browser/browser_process.h" 13 #include "chrome/browser/browser_process.h"
14 #include "chrome/browser/media/webrtc_browsertest_base.h" 14 #include "chrome/browser/media/webrtc_browsertest_base.h"
15 #include "chrome/browser/media/webrtc_browsertest_common.h" 15 #include "chrome/browser/media/webrtc_browsertest_common.h"
16 #include "chrome/browser/media/webrtc_browsertest_perf.h" 16 #include "chrome/browser/media/webrtc_browsertest_perf.h"
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 124
125 const base::DictionaryValue* first_pc_dict = 125 const base::DictionaryValue* first_pc_dict =
126 GetDataOnFirstPeerConnection(all_data.get()); 126 GetDataOnFirstPeerConnection(all_data.get());
127 ASSERT_TRUE(first_pc_dict != NULL); 127 ASSERT_TRUE(first_pc_dict != NULL);
128 test::PrintBweForVideoMetrics(*first_pc_dict); 128 test::PrintBweForVideoMetrics(*first_pc_dict);
129 test::PrintMetricsForAllStreams(*first_pc_dict); 129 test::PrintMetricsForAllStreams(*first_pc_dict);
130 130
131 HangUp(left_tab); 131 HangUp(left_tab);
132 HangUp(right_tab); 132 HangUp(right_tab);
133 } 133 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698