aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Kron <kron@webrtc.org>2023-02-03 19:23:39 +0000
committerWebRTC LUCI CQ <webrtc-scoped@luci-project-accounts.iam.gserviceaccount.com>2023-02-03 21:02:46 +0000
commitfd29662c61b2145d6de4c38eb55e48421a4d427b (patch)
tree1f3e4388af6986e6b9de3087409ba299c7a40eec
parent5e7301f69368ad141a0f233bb502243a7a711609 (diff)
downloadwebrtc-fd29662c61b2145d6de4c38eb55e48421a4d427b.tar.gz
Fix typo in histogram name
Bug: chromium:1348011 Change-Id: Ic4680339a110bf71afa7689bbc7acada1428811a Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/291806 Reviewed-by: Harald Alvestrand <hta@webrtc.org> Commit-Queue: Johannes Kron <kron@webrtc.org> Cr-Commit-Position: refs/heads/main@{#39258}
-rw-r--r--modules/desktop_capture/desktop_capturer.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/desktop_capture/desktop_capturer.cc b/modules/desktop_capture/desktop_capturer.cc
index c6a8dec4d4..5211f1acec 100644
--- a/modules/desktop_capture/desktop_capturer.cc
+++ b/modules/desktop_capture/desktop_capturer.cc
@@ -29,7 +29,8 @@
namespace webrtc {
void LogDesktopCapturerFullscreenDetectorUsage() {
- RTC_HISTOGRAM_BOOLEAN("WebRTC.Screenshare.DesktopCapturerUsage", true);
+ RTC_HISTOGRAM_BOOLEAN("WebRTC.Screenshare.DesktopCapturerFullscreenDetector",
+ true);
}
DesktopCapturer::~DesktopCapturer() = default;