blob: 611e8520e48d49f8a74521a7e42e3068f5894970 [file] [log] [blame]
// Copyright 2014 The ChromiumOS Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "permission_broker/allow_tty_device_rule.h"
#include <libudev.h>
namespace permission_broker {
AllowTtyDeviceRule::AllowTtyDeviceRule()
: TtySubsystemUdevRule("AllowTtyDeviceRule") {}
Rule::Result AllowTtyDeviceRule::ProcessTtyDevice(udev_device* device) {
return ALLOW;
}
} // namespace permission_broker