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

Side by Side Diff: webrtc/video/video_quality_test.cc

Issue 1417683006: modules: more interface -> include renames (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 5 years, 1 month 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 /* 1 /*
2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2015 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 #include <stdio.h> 10 #include <stdio.h>
11 11
12 #include <algorithm> 12 #include <algorithm>
13 #include <deque> 13 #include <deque>
14 #include <map> 14 #include <map>
15 #include <vector> 15 #include <vector>
16 16
17 #include "testing/gtest/include/gtest/gtest.h" 17 #include "testing/gtest/include/gtest/gtest.h"
18 18
19 #include "webrtc/base/checks.h" 19 #include "webrtc/base/checks.h"
20 #include "webrtc/base/format_macros.h" 20 #include "webrtc/base/format_macros.h"
21 #include "webrtc/base/scoped_ptr.h" 21 #include "webrtc/base/scoped_ptr.h"
22 #include "webrtc/call.h" 22 #include "webrtc/call.h"
23 #include "webrtc/common_video/libyuv/include/webrtc_libyuv.h" 23 #include "webrtc/common_video/libyuv/include/webrtc_libyuv.h"
24 #include "webrtc/modules/rtp_rtcp/interface/rtp_header_parser.h" 24 #include "webrtc/modules/rtp_rtcp/include/rtp_header_parser.h"
25 #include "webrtc/system_wrappers/include/cpu_info.h" 25 #include "webrtc/system_wrappers/include/cpu_info.h"
26 #include "webrtc/test/layer_filtering_transport.h" 26 #include "webrtc/test/layer_filtering_transport.h"
27 #include "webrtc/test/run_loop.h" 27 #include "webrtc/test/run_loop.h"
28 #include "webrtc/test/statistics.h" 28 #include "webrtc/test/statistics.h"
29 #include "webrtc/test/testsupport/fileutils.h" 29 #include "webrtc/test/testsupport/fileutils.h"
30 #include "webrtc/test/video_renderer.h" 30 #include "webrtc/test/video_renderer.h"
31 #include "webrtc/video/video_quality_test.h" 31 #include "webrtc/video/video_quality_test.h"
32 32
33 namespace webrtc { 33 namespace webrtc {
34 34
(...skipping 821 matching lines...) Expand 10 before | Expand all | Expand 10 after
856 send_stream_->Stop(); 856 send_stream_->Stop();
857 receive_stream->Stop(); 857 receive_stream->Stop();
858 858
859 call->DestroyVideoReceiveStream(receive_stream); 859 call->DestroyVideoReceiveStream(receive_stream);
860 call->DestroyVideoSendStream(send_stream_); 860 call->DestroyVideoSendStream(send_stream_);
861 861
862 transport.StopSending(); 862 transport.StopSending();
863 } 863 }
864 864
865 } // namespace webrtc 865 } // namespace webrtc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698