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

Side by Side Diff: chrome/browser/usb/web_usb_histograms.cc

Issue 1739523002: WebUsb Android chooser UI (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comments Created 4 years, 9 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:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "chrome/browser/usb/web_usb_histograms.h"
6
7 #include "base/metrics/histogram_macros.h"
8
9 void RecordWebUsbChooserClosure(WebUsbChooserClosed disposition) {
10 UMA_HISTOGRAM_ENUMERATION("WebUsb.ChooserClosed", disposition,
11 WEBUSB_CHOOSER_CLOSED_MAX);
12 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698