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 17:14:13 +0000
committercsharp@chromium.org <csharp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-07-03 17:14:13 +0000
commit0eac598eeed59ebebdeb0d44e93677fbb9cb9d5a (patch)
tree6c5033490339860687bd80a6f6a663784eddd654 /device/hid/hid_collection_info.h
parentc9ab4198a25ff667f69acc6c9c8dad10c81bbe64 (diff)
downloadchromium_src-0eac598eeed59ebebdeb0d44e93677fbb9cb9d5a.zip
chromium_src-0eac598eeed59ebebdeb0d44e93677fbb9cb9d5a.tar.gz
chromium_src-0eac598eeed59ebebdeb0d44e93677fbb9cb9d5a.tar.bz2
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 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@281282 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, 0 insertions, 29 deletions
diff --git a/device/hid/hid_collection_info.h b/device/hid/hid_collection_info.h
deleted file mode 100644
index 3b35e5e..0000000
--- a/device/hid/hid_collection_info.h
+++ /dev/null
@@ -1,29 +0,0 @@
-// 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_