1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "device/hid/hid_device_info.h"
9 const char kInvalidHidDeviceId
[] = "";
11 HidDeviceInfo::HidDeviceInfo()
12 : device_id(kInvalidHidDeviceId
),
15 bus_type(kHIDBusTypeUSB
),
17 max_input_report_size(0),
18 max_output_report_size(0),
19 max_feature_report_size(0) {
22 HidDeviceInfo::~HidDeviceInfo() {}