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

Unified Diff: device/udev_linux/udev.h

Issue 965903003: Add udev_device_new_from_subsystem_sysname to udev, for use in Web MIDI on Linux (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « build/linux/system.gyp ('k') | device/udev_linux/udev.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/udev_linux/udev.h
diff --git a/device/udev_linux/udev.h b/device/udev_linux/udev.h
index d58960d5dfc36cf1abf15ac8007b71ee379253b4..2bb8df2695f1511b154b8209f474831049144052 100644
--- a/device/udev_linux/udev.h
+++ b/device/udev_linux/udev.h
@@ -42,6 +42,10 @@ const char* udev_device_get_sysattr_value(udev_device* udev_device,
const char* udev_device_get_sysname(udev_device* udev_device);
const char* udev_device_get_syspath(udev_device* udev_device);
udev_device* udev_device_new_from_devnum(udev* udev, char type, dev_t devnum);
+udev_device* udev_device_new_from_subsystem_sysname(
+ udev* udev,
+ const char* subsystem,
+ const char* sysname);
udev_device* udev_device_new_from_syspath(udev* udev, const char* syspath);
void udev_device_unref(udev_device* udev_device);
int udev_enumerate_add_match_subsystem(udev_enumerate* udev_enumerate,
« no previous file with comments | « build/linux/system.gyp ('k') | device/udev_linux/udev.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698