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

Unified Diff: tools/metrics/histograms/histograms.xml

Side-by-side diff isn't available for this file because of its large size.
Issue 1349823004: Check media permissions (mic/camera) before exposing local addresses to WebRTC. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase, fix test issue, fix windows build issue. Created 5 years, 2 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:
Download patch
« no previous file with comments | « content/renderer/p2p/port_allocator.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index c7a6b843898f0197b5982f07a03c6fc62acfc264..0a2dc7014e12909f7c911067e1ef42299fa75d15 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -50349,6 +50349,17 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="WebRTC.PeerConnection.IPPermissionStatus"
+ enum="IPPermissionStatus">
+ <owner>guoweis@chromium.org</owner>
+ <summary>
+ Whether the permission to collect the local IP addresses in WebRTC has been
+ requested and/or granted. This is collected the first time when networks
+ updated event is reported or if never reported, during the destruction phase
+ of a call.
+ </summary>
+</histogram>
+
<histogram name="WebRTC.PeerConnection.IPv4Interfaces">
<owner>mallinath@chromium.org</owner>
<summary>
@@ -50395,6 +50406,15 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<summary>Time to setup a peer to peer call with PeerConnection.</summary>
</histogram>
+<histogram name="WebRTC.PeerConnection.TimeToNetworkUpdated"
+ units="milliseconds">
+ <owner>guoweis@chromium.org</owner>
+ <summary>
+ Time to receive the first SignalNetworksChanged from the request to start
+ updating network in PeerConnection.
+ </summary>
+</histogram>
+
<histogram name="WebRTC.ReceivedAudioTrackDuration" units="milliseconds">
<owner>perkj@chromium.org</owner>
<summary>
@@ -62167,6 +62187,13 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</int>
</enum>
+<enum name="IPPermissionStatus" type="int">
+ <int value="0" label="Not requested"/>
+ <int value="1" label="Requested but denied"/>
+ <int value="2" label="Requested and granted"/>
+ <int value="3" label="Unknown"/>
+</enum>
+
<enum name="IPv6ConnectivityStatus" type="int">
<int value="0" label="Incomplete IPv6 Configuration"/>
<int value="1" label="Complete IPv6 Configuration"/>
« no previous file with comments | « content/renderer/p2p/port_allocator.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698