Index: device/hid/hid_report_descriptor.h |
diff --git a/device/hid/hid_report_descriptor.h b/device/hid/hid_report_descriptor.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..64879f1641ff0970952cda68979fe2140959cabc |
--- /dev/null |
+++ b/device/hid/hid_report_descriptor.h |
@@ -0,0 +1,41 @@ |
+// Copyright 2014 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_HID_HID_REPORT_DESCRIPTOR_H_ |
+#define DEVICE_HID_HID_REPORT_DESCRIPTOR_H_ |
+ |
+#include <vector> |
+ |
+#include "base/memory/linked_ptr.h" |
+#include "device/hid/hid_report_descriptor_item.h" |
+#include "device/hid/hid_usage_and_page.h" |
+ |
+namespace device { |
+ |
+// HID report descriptor. |
+// See section 6.2.2 of HID specifications (v1.11). |
+class HidReportDescriptor { |
+ |
+ public: |
+ HidReportDescriptor(const uint8_t* bytes, size_t size); |
+ ~HidReportDescriptor(); |
+ |
+ const std::vector<linked_ptr<HidReportDescriptorItem> >& items() const { |
+ return items_; |
+ } |
+ |
+ // Returns HID usages of top-level collections present in the descriptor. |
+ void GetTopLevelCollections( |
+ std::vector<HidUsageAndPage>* topLevelCollections); |
+ |
+ private: |
+ std::vector<linked_ptr<HidReportDescriptorItem> > items_; |
+}; |
+ |
+std::ostream& operator<<(std::ostream& os, |
+ const HidReportDescriptor& descriptor); |
Ken Rockot(use gerrit already)
2014/04/21 21:53:53
Two concerns:
1. It is really not idiomatic in ch
jracle (use Gerrit)
2014/04/23 13:06:47
Since it is not idiomatic, and I don't see a wide
|
+ |
+} // namespace device |
+ |
+#endif // DEVICE_HID_HID_REPORT_DESCRIPTOR_H_ |