Don't show status bar updates from originating renderer when fullscreen
[chromium-blink-merge.git] / device / hid / hid_device_info.cc
blob1a9d3a65c75a6d46fa81d28ec8f0500c7671057f
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"
7 namespace device {
9 const char kInvalidHidDeviceId[] = "";
11 HidDeviceInfo::HidDeviceInfo()
12 : device_id_(kInvalidHidDeviceId),
13 vendor_id_(0),
14 product_id_(0),
15 bus_type_(kHIDBusTypeUSB),
16 has_report_id_(false),
17 max_input_report_size_(0),
18 max_output_report_size_(0),
19 max_feature_report_size_(0) {
22 HidDeviceInfo::~HidDeviceInfo() {}
24 } // namespace device