Index: third_party/WebKit/Source/core/frame/HostsUsingFeatures.cpp |
diff --git a/third_party/WebKit/Source/core/frame/HostsUsingFeatures.cpp b/third_party/WebKit/Source/core/frame/HostsUsingFeatures.cpp |
index 975e84283c6b3c5c4f7bb8b6f633e4566e26a67e..8c89ccc1b4155a11a717848634be020c33486bf5 100644 |
--- a/third_party/WebKit/Source/core/frame/HostsUsingFeatures.cpp |
+++ b/third_party/WebKit/Source/core/frame/HostsUsingFeatures.cpp |
@@ -192,6 +192,12 @@ void HostsUsingFeatures::Value::recordETLDPlus1ToRappor(const KURL& url) |
Platform::current()->recordRapporURL("PowerfulFeatureUse.ETLDPlus1.GetUserMedia.Insecure", WebURL(url)); |
if (get(Feature::GetUserMediaSecureHost)) |
Platform::current()->recordRapporURL("PowerfulFeatureUse.ETLDPlus1.GetUserMedia.Secure", WebURL(url)); |
+ if (get(Feature::RTCPeerConnectionAudio)) |
+ Platform::current()->recordRapporURL("RTCPeerConnection.Audio", WebURL(url)); |
+ if (get(Feature::RTCPeerConnectionVideo)) |
+ Platform::current()->recordRapporURL("RTCPeerConnection.Video", WebURL(url)); |
+ if (get(Feature::RTCPeerConnectionDataChannel)) |
+ Platform::current()->recordRapporURL("RTCPeerConnection.DataChannel", WebURL(url)); |
} |
} // namespace blink |