f925dff33cd1b32c622e5b783057893c7c262379
[platform/framework/web/crosswalk.git] / src / device / serial / serial.mojom
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.
4
5 module device {
6
7 struct SerialDeviceInfo {
8   string path;
9   uint16 vendor_id;
10   bool has_vendor_id = false;
11   uint16 product_id;
12   bool has_product_id = false;
13   string display_name;
14 };
15
16 }