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

Unified Diff: device/usb/public/interfaces/device_manager.mojom

Issue 1183443002: Reland: Introduce the devices Mojo app (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: gn check... Created 5 years, 6 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/usb/public/interfaces/device.mojom ('k') | device/usb/type_converters.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/usb/public/interfaces/device_manager.mojom
diff --git a/device/usb/public/interfaces/device_manager.mojom b/device/usb/public/interfaces/device_manager.mojom
deleted file mode 100644
index 4da4bdafdb354dc43228f46b44b8c3772562187a..0000000000000000000000000000000000000000
--- a/device/usb/public/interfaces/device_manager.mojom
+++ /dev/null
@@ -1,48 +0,0 @@
-// Copyright 2015 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.
-
-module device.usb;
-
-import "device.mojom";
-
-enum OpenDeviceError {
- // Opening the device succeeded.
- OK,
-
- // The device could not be opened because the request GUID is unknown.
- NOT_FOUND,
-
- // The operating system denied access to the device.
- ACCESS_DENIED,
-};
-
-struct DeviceFilter {
- bool has_vendor_id;
- uint16 vendor_id;
-
- bool has_product_id;
- uint16 product_id;
-
- bool has_class_code;
- uint8 class_code;
-
- bool has_subclass_code;
- uint8 subclass_code;
-
- bool has_protocol_code;
- uint8 protocol_code;
-};
-
-struct EnumerationOptions {
- array<DeviceFilter> filters;
-};
-
-interface DeviceManager {
- // Retrieves information about all devices available to the DeviceManager
- // implementation.
- GetDevices(EnumerationOptions options) => (array<DeviceInfo> results);
-
- // Attempts to open a device given its GUID.
- OpenDevice(string guid, Device& device_request) => (OpenDeviceError error);
-};
« no previous file with comments | « device/usb/public/interfaces/device.mojom ('k') | device/usb/type_converters.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698