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

Side by Side Diff: webrtc/p2p/base/transportdescriptionfactory_unittest.cc

Issue 1750593002: Rename constants files in webrtc/{media,p2p} (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Removed cricket naming Created 4 years, 9 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
« no previous file with comments | « webrtc/p2p/base/transportdescription.cc ('k') | webrtc/p2p/base/transportinfo.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2012 The WebRTC Project Authors. All rights reserved. 2 * Copyright 2012 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 10
11 #include <string> 11 #include <string>
12 #include <vector> 12 #include <vector>
13 13
14 #include "webrtc/p2p/base/constants.h" 14 #include "webrtc/p2p/base/p2pconstants.h"
15 #include "webrtc/p2p/base/transportdescription.h" 15 #include "webrtc/p2p/base/transportdescription.h"
16 #include "webrtc/p2p/base/transportdescriptionfactory.h" 16 #include "webrtc/p2p/base/transportdescriptionfactory.h"
17 #include "webrtc/base/fakesslidentity.h" 17 #include "webrtc/base/fakesslidentity.h"
18 #include "webrtc/base/gunit.h" 18 #include "webrtc/base/gunit.h"
19 #include "webrtc/base/ssladapter.h" 19 #include "webrtc/base/ssladapter.h"
20 20
21 using rtc::scoped_ptr; 21 using rtc::scoped_ptr;
22 using cricket::TransportDescriptionFactory; 22 using cricket::TransportDescriptionFactory;
23 using cricket::TransportDescription; 23 using cricket::TransportDescription;
24 using cricket::TransportOptions; 24 using cricket::TransportOptions;
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 // if |TransportDescriptionOptions::ice_restart| is true. 252 // if |TransportDescriptionOptions::ice_restart| is true.
253 TEST_F(TransportDescriptionFactoryTest, TestIceRestart) { 253 TEST_F(TransportDescriptionFactoryTest, TestIceRestart) {
254 TestIceRestart(false); 254 TestIceRestart(false);
255 } 255 }
256 256
257 // Test that ice ufrag and password is changed in an updated offer and answer 257 // Test that ice ufrag and password is changed in an updated offer and answer
258 // if |TransportDescriptionOptions::ice_restart| is true and DTLS is enabled. 258 // if |TransportDescriptionOptions::ice_restart| is true and DTLS is enabled.
259 TEST_F(TransportDescriptionFactoryTest, TestIceRestartWithDtls) { 259 TEST_F(TransportDescriptionFactoryTest, TestIceRestartWithDtls) {
260 TestIceRestart(true); 260 TestIceRestart(true);
261 } 261 }
OLDNEW
« no previous file with comments | « webrtc/p2p/base/transportdescription.cc ('k') | webrtc/p2p/base/transportinfo.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698