Index: components/storage_monitor/udev_util_linux.h |
diff --git a/components/storage_monitor/udev_util_linux.h b/components/storage_monitor/udev_util_linux.h |
index 108816beeb35794c3359267e079d2867e8491277..f00048b09cf8d9990bff38173a74b4fd13394678 100644 |
--- a/components/storage_monitor/udev_util_linux.h |
+++ b/components/storage_monitor/udev_util_linux.h |
@@ -17,19 +17,6 @@ class FilePath; |
namespace storage_monitor { |
-// Deleter for ScopedUdevObject. |
-struct UdevDeleter { |
- void operator()(struct udev* udev); |
-}; |
-typedef scoped_ptr<struct udev, UdevDeleter> ScopedUdevObject; |
- |
-// Deleter for ScopedUdevDeviceObject(). |
-struct UdevDeviceDeleter { |
- void operator()(struct udev_device* device); |
-}; |
-typedef scoped_ptr<struct udev_device, UdevDeviceDeleter> |
- ScopedUdevDeviceObject; |
- |
// Wrapper function for udev_device_get_property_value() that also checks for |
// valid but empty values. |
std::string GetUdevDevicePropertyValue(struct udev_device* udev_device, |