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

Unified Diff: talk/app/webrtc/statscollector_unittest.cc

Issue 1337673002: Change WebRTC SslCipher to be exposed as number only. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Created 5 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 side-by-side diff with in-line comments
Download patch
Index: talk/app/webrtc/statscollector_unittest.cc
diff --git a/talk/app/webrtc/statscollector_unittest.cc b/talk/app/webrtc/statscollector_unittest.cc
index 0a9d947841a6dd685723969ee0307c5fa19fdba9..fb339cb55190778986e2ad08f3468646f736cda4 100644
--- a/talk/app/webrtc/statscollector_unittest.cc
+++ b/talk/app/webrtc/statscollector_unittest.cc
@@ -651,7 +651,7 @@ class StatsCollectorTest : public testing::Test {
cricket::TransportChannelStats channel_stats;
channel_stats.component = 1;
channel_stats.srtp_cipher = "the-srtp-cipher";
- channel_stats.ssl_cipher = "the-ssl-cipher";
+ channel_stats.ssl_cipher = 0xC014;
Ryan Sleevi 2015/09/28 17:24:17 Perhaps a comment explaining this magic value.
pthatcher1 2015/09/29 22:25:16 +1 Or better yet, make a named constant and then
guoweis_webrtc 2015/09/30 04:09:46 Done.
cricket::TransportStats transport_stats;
transport_stats.transport_name = "audio";

Powered by Google App Engine
This is Rietveld 408576698