| 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 09c41648b6081e31a812ec6eebd5543fceb01925..860fc1e47eb11ccfe62d2ffd3fc72392b666f731 100644
|
| --- a/third_party/WebKit/Source/core/frame/HostsUsingFeatures.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/HostsUsingFeatures.cpp
|
| @@ -202,6 +202,13 @@ void HostsUsingFeatures::Value::recordETLDPlus1ToRappor(const KURL& url) {
|
| if (get(Feature::RTCPeerConnectionDataChannel))
|
| Platform::current()->recordRapporURL("RTCPeerConnection.DataChannel",
|
| WebURL(url));
|
| + if (get(Feature::RTCPeerConnectionUsed) &&
|
| + !get(Feature::RTCPeerConnectionAudio) &&
|
| + !get(Feature::RTCPeerConnectionVideo) &&
|
| + !get(Feature::RTCPeerConnectionDataChannel)) {
|
| + Platform::current()->recordRapporURL("RTCPeerConnection.Unconnected",
|
| + WebURL(url));
|
| + }
|
| }
|
|
|
| } // namespace blink
|
|
|