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

Side by Side Diff: chrome/browser/system_monitor/removable_device_notifications_histogram.h

Issue 10933114: Combine boolean MediaDeviceNotifications histograms to an enumerated histogram. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 3 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2012 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 // Common code shared between RemovableDeviceNotifications{Win,Linux,Mac,
6 // ChromeOS} to record MediaDeviceNotification.DeviceInfo histogram.
7
8 #ifndef CHROME_BROWSER_SYSTEM_MONITOR_REMOVABLE_DEVICE_NOTIFICATIONS_HISTOGRAM_H _
9 #define CHROME_BROWSER_SYSTEM_MONITOR_REMOVABLE_DEVICE_NOTIFICATIONS_HISTOGRAM_H _
10
11 #include "chrome/browser/system_monitor/media_storage_util.h"
12
13 namespace chrome {
14
15 // Record device information histogram for the given |device_type|,
16 // |device_uuid| and |device_name|.
17 void RecordDeviceInfoHistogram(MediaStorageUtil::Type device_type,
18 const std::string& device_uuid,
19 const string16& device_name);
20
21 } // namespace chrome
22
23 #endif // CHROME_BROWSER_SYSTEM_MONITOR_REMOVABLE_DEVICE_NOTIFICATIONS_HISTOGRA M_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698