chromium/third_party/blink/public/mojom/smart_card/smart_card.mojom

// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

module blink.mojom;

import "services/device/public/mojom/smart_card.mojom";

// Interface for accessing smart card readers from the render process.
// The implementation is responsible for checking access permissions.
interface SmartCardService {
  // Creates an Application Context to the PC/SC Resource Manager.
  CreateContext() => (device.mojom.SmartCardCreateContextResult result);
};