| OLD | NEW |
| (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_ |
| OLD | NEW |