summaryrefslogtreecommitdiffstats
path: root/device/hid/hid_collection_info.h
diff options
context:
space:
mode:
authorcsharp@chromium.org <csharp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-07-03 18:20:04 +0000
committercsharp@chromium.org <csharp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-07-03 18:20:04 +0000
commit104de62a1315caeae550b83c5f9163277bdd5f9b (patch)
treeb1aea142555240fbb2bf98aad52144ae39e1d2c6 /device/hid/hid_collection_info.h
parentb2ba2d4ddc3f87e328c7e074fd1f82d22e19f0dc (diff)
downloadchromium_src-104de62a1315caeae550b83c5f9163277bdd5f9b.zip
chromium_src-104de62a1315caeae550b83c5f9163277bdd5f9b.tar.gz
chromium_src-104de62a1315caeae550b83c5f9163277bdd5f9b.tar.bz2
Revert 281282 "Revert 281133 "chrome.hid: enrich model with repo..."
Tests still failed, undoing revert. > Revert 281133 "chrome.hid: enrich model with report IDs" > > Speculative revert to try and fix Win browser tests. > > > chrome.hid: enrich model with report IDs > > > > - add report IDs and max report size > > - don't expose sensitive usages > > > > BUG=364423 > > R=rockot@chromium.org > > TESTS=run device_unittests (HidReportDescriptorTest) > > > > Review URL: https://codereview.chromium.org/317783010 > > TBR=jracle@logitech.com > > Review URL: https://codereview.chromium.org/369923002 TBR=csharp@chromium.org Review URL: https://codereview.chromium.org/364213005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@281300 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'device/hid/hid_collection_info.h')
-rw-r--r--device/hid/hid_collection_info.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/device/hid/hid_collection_info.h b/device/hid/hid_collection_info.h
new file mode 100644
index 0000000..3b35e5e
--- /dev/null
+++ b/device/hid/hid_collection_info.h
@@ -0,0 +1,29 @@
+// 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_COLLECTION_INFO_H_
+#define DEVICE_HID_HID_COLLECTION_INFO_H_
+
+#include <set>
+
+#include "device/hid/hid_usage_and_page.h"
+
+namespace device {
+
+struct HidCollectionInfo {
+ HidCollectionInfo();
+ ~HidCollectionInfo();
+
+ // Collection's usage ID.
+ HidUsageAndPage usage;
+
+ // HID report IDs which belong
+ // to this collection or to its
+ // embedded collections.
+ std::set<int> report_ids;
+};
+
+} // namespace device"
+
+#endif // DEVICE_HID_HID_COLLECTION_INFO_H_