blob: 960a16b67cd9af48fc42088bd1bbaacf3ebfa6d9 [file] [log] [blame]
// Copyright 2014 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.
// https://w3c.github.io/webappsec/specs/credentialmanagement/#credential
[
RuntimeEnabled=CredentialManager,
GarbageCollected
] interface Credential {
readonly attribute DOMString id;
readonly attribute DOMString type;
// TODO(mkwst): These should be on LocallyStoredCredential.
readonly attribute DOMString name;
readonly attribute DOMString iconURL;
};