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

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

Issue 1455233005: Revert of Convert internal representation of Srtp cryptos from string to int. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « talk/app/webrtc/statscollector_unittest.cc ('k') | talk/media/base/cryptoparams.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: talk/app/webrtc/webrtcsession.cc
diff --git a/talk/app/webrtc/webrtcsession.cc b/talk/app/webrtc/webrtcsession.cc
index ada35c5e4d7c262a2d64c9d5de8c9f22c8b30417..1fc2a37902740aeda83a8d3c3e58d90aa9d9117c 100644
--- a/talk/app/webrtc/webrtcsession.cc
+++ b/talk/app/webrtc/webrtcsession.cc
@@ -2157,10 +2157,9 @@
return;
}
- int srtp_crypto_suite = stats.channel_stats[0].srtp_crypto_suite;
- int ssl_cipher_suite = stats.channel_stats[0].ssl_cipher_suite;
- if (srtp_crypto_suite == rtc::SRTP_INVALID_CRYPTO_SUITE &&
- ssl_cipher_suite == rtc::TLS_NULL_WITH_NULL_NULL) {
+ const std::string& srtp_cipher = stats.channel_stats[0].srtp_cipher;
+ int ssl_cipher = stats.channel_stats[0].ssl_cipher;
+ if (srtp_cipher.empty() && !ssl_cipher) {
return;
}
@@ -2180,13 +2179,12 @@
return;
}
- if (srtp_crypto_suite != rtc::SRTP_INVALID_CRYPTO_SUITE) {
- metrics_observer_->IncrementSparseEnumCounter(srtp_counter_type,
- srtp_crypto_suite);
- }
- if (ssl_cipher_suite != rtc::TLS_NULL_WITH_NULL_NULL) {
- metrics_observer_->IncrementSparseEnumCounter(ssl_counter_type,
- ssl_cipher_suite);
+ if (!srtp_cipher.empty()) {
+ metrics_observer_->IncrementSparseEnumCounter(
+ srtp_counter_type, rtc::GetSrtpCryptoSuiteFromName(srtp_cipher));
+ }
+ if (ssl_cipher) {
+ metrics_observer_->IncrementSparseEnumCounter(ssl_counter_type, ssl_cipher);
}
}
« no previous file with comments | « talk/app/webrtc/statscollector_unittest.cc ('k') | talk/media/base/cryptoparams.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698