blob: bb149827d703d3823c59a7e2ec8d66b1e307936f [file] [log] [blame]
// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "permission_broker/allow_usb_device_rule.h"
#include <libudev.h>
namespace permission_broker {
AllowUsbDeviceRule::AllowUsbDeviceRule()
: UsbSubsystemUdevRule("AllowUsbDeviceRule") {}
Rule::Result AllowUsbDeviceRule::ProcessUsbDevice(struct udev_device *device) {
return ALLOW;
}
} // namespace permission_broker