blob: 4f33422fb6f2e2c419d1bd4c86d198ec45575b5e [file] [log] [blame]
// Copyright 2019 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.mojom;
import "device/usb/public/mojom/device.mojom";
interface UsbDeviceManagerClient {
// Called when a device is connected to the host.
OnDeviceAdded(UsbDeviceInfo device_info);
// Called when a device is disconnected from the host.
OnDeviceRemoved(UsbDeviceInfo device_info);
};