Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Common code shared between MediaDeviceNotifications{Win,Linux}. | 5 // Common code shared between MediaDeviceNotifications{Win,Linux}. |
| 6 | 6 |
| 7 #ifndef CHROME_BROWSER_SYSTEM_MONITOR_MEDIA_DEVICE_NOTIFICATIONS_UTILS_H_ | 7 #ifndef CHROME_BROWSER_SYSTEM_MONITOR_MEDIA_DEVICE_NOTIFICATIONS_UTILS_H_ |
| 8 #define CHROME_BROWSER_SYSTEM_MONITOR_MEDIA_DEVICE_NOTIFICATIONS_UTILS_H_ | 8 #define CHROME_BROWSER_SYSTEM_MONITOR_MEDIA_DEVICE_NOTIFICATIONS_UTILS_H_ |
| 9 | 9 |
| 10 #include "base/file_path.h" | 10 #include "base/file_path.h" |
| 11 #include "base/string16.h" | |
| 11 | 12 |
| 12 namespace chrome { | 13 namespace chrome { |
| 13 | 14 |
| 14 // Check if the file system at the passed mount point looks like a media | 15 // Check if the file system at the passed mount point looks like a media |
| 15 // device using the existence of DCIM directory. | 16 // device using the existence of DCIM directory. |
| 16 // Returns true, if it is a media device otherwise return false. | 17 // Returns true, if it is a media device otherwise return false. |
| 17 // Mac OS X behaves similarly, but this is not the only heuristic it uses. | 18 // Mac OS X behaves similarly, but this is not the only heuristic it uses. |
| 18 // TODO(vandebo) Try to figure out how Mac OS X decides this. | 19 // TODO(vandebo) Try to figure out how Mac OS X decides this. |
| 19 bool IsMediaDevice(const FilePath::StringType& mount_point); | 20 bool IsMediaDevice(const FilePath::StringType& mount_point); |
| 20 | 21 |
| 22 // Constructs and returns the device product name from |vendor_name| and | |
|
Lei Zhang
2012/11/12 23:20:52
nit: you don't need to say "and returns", it's imp
kmadhusu
2012/11/13 01:03:58
Done.
| |
| 23 // |model_name|. | |
| 24 std::string GetFullProductName(const std::string& vendor_name, | |
| 25 const std::string& model_name); | |
| 26 | |
| 27 // Constructs and returns a display name for device from |storage_size_in_bytes| | |
| 28 // and |name|. | |
| 29 string16 GetDisplayNameForDevice(uint64 storage_size_in_bytes, | |
| 30 const string16& name); | |
| 31 | |
| 21 } // namespace chrome | 32 } // namespace chrome |
| 22 | 33 |
| 23 #endif // CHROME_BROWSER_SYSTEM_MONITOR_MEDIA_DEVICE_NOTIFICATIONS_UTILS_H_ | 34 #endif // CHROME_BROWSER_SYSTEM_MONITOR_MEDIA_DEVICE_NOTIFICATIONS_UTILS_H_ |
| OLD | NEW |