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

Unified Diff: device/hid/hid_device_info.h

Issue 161823002: Clean up HID backend and API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 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 | « device/hid/hid_connection_win.cc ('k') | device/hid/hid_device_info.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/hid/hid_device_info.h
diff --git a/device/hid/hid_device_info.h b/device/hid/hid_device_info.h
index b6659444a893c5004adfd96390a91aedf47c0da2..7531042156b8aef676ddfa90d1d01d85c8de99d0 100644
--- a/device/hid/hid_device_info.h
+++ b/device/hid/hid_device_info.h
@@ -1,13 +1,19 @@
-// Copyright (c) 2014 The Chromium Authors. All rights reserved.
+// 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_DEVICE_INFO_H_
#define DEVICE_HID_HID_DEVICE_INFO_H_
+#include <stdint.h>
+
#include <string>
-#include "base/basictypes.h"
+#include "build/build_config.h"
+
+#if defined(OS_MACOSX)
+#include <IOKit/hid/IOHIDDevice.h>
+#endif
namespace device {
@@ -16,22 +22,30 @@ enum HidBusType {
kHIDBusTypeBluetooth = 1,
};
+#if defined(OS_MACOSX)
+typedef IOHIDDeviceRef HidDeviceId;
+const HidDeviceId kInvalidHidDeviceId = NULL;
+#else
+typedef std::string HidDeviceId;
+extern const char kInvalidHidDeviceId[];
+#endif
+
struct HidDeviceInfo {
HidDeviceInfo();
~HidDeviceInfo();
- std::string device_id;
+ HidDeviceId device_id;
HidBusType bus_type;
- uint16 vendor_id;
- uint16 product_id;
+ uint16_t vendor_id;
+ uint16_t product_id;
- size_t input_report_size;
- size_t output_report_size;
- size_t feature_report_size;
+ int input_report_size;
+ int output_report_size;
+ int feature_report_size;
- uint16 usage_page;
- uint16 usage;
+ uint16_t usage_page;
+ uint16_t usage;
bool has_report_id;
std::string product_name;
« no previous file with comments | « device/hid/hid_connection_win.cc ('k') | device/hid/hid_device_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698