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

Unified Diff: device/usb/usb_ids.h

Issue 11344039: Adding USB ID vendor and product lookups. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Adding use_system_usbutils option. Created 8 years, 2 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
Index: device/usb/usb_ids.h
diff --git a/device/usb/usb_ids.h b/device/usb/usb_ids.h
new file mode 100644
index 0000000000000000000000000000000000000000..2f6b95026d70e4241b6f889d05474b33f5d1d687
--- /dev/null
+++ b/device/usb/usb_ids.h
@@ -0,0 +1,58 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef DEVICE_USB_USB_IDS_H_
+#define DEVICE_USB_USB_IDS_H_
+
+#include <stdint.h>
+
+#include "base/basictypes.h"
+
+namespace device {
+
+struct UsbProduct {
+ const uint16_t id;
+ const char* name;
+};
+
+struct UsbVendor {
+ const uint16_t id;
+ const char* name;
+ const size_t product_size;
+ const UsbProduct* products;
+};
+
+// UsbIds provides a static mapping from a vendor ID to a name, as well as a
+// mapping from a vendor/product ID pair to a product name.
+class UsbIds {
+ public:
+ // Gets the name of the vendor who owns |vendor_id|. Returns NULL if the
+ // specified |vendor_id| does not exist.
+ static const char* GetVendorName(uint16_t vendor_id);
+
+ // Gets the name of a product belonging to a specific vendor. If either
+ // |vendor_id| refers to a vendor that does not exist, or |vendor_id| is valid
+ // but |product_id| refers to a product that does not exist, this method
+ // returns NULL.
+ static const char* GetProductName(uint16_t vendor_id, uint16_t product_id);
+
+ private:
+ UsbIds();
+ ~UsbIds();
+
+ // Finds the static UsbVendor associated with |vendor_id|. Returns NULL if no
+ // such vendor exists.
+ static const UsbVendor* FindVendor(uint16_t vendor_id);
+
+ // These fields are defined in a generated file. See device/device.gyp for
+ // more information on how they are generated.
+ static const size_t vendor_size_;
+ static const UsbVendor vendors_[];
+
+ DISALLOW_COPY_AND_ASSIGN(UsbIds);
+};
+
+} // namespace device
+
+#endif // DEVICE_USB_USB_IDS_H_
« device/device.gyp ('K') | « device/device.gyp ('k') | device/usb/usb_ids.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698