blob: 27a73aeebd2faf793f67eb61025ac81711181c5d [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,
Exposed=Window
] 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;
};