Chromium Code Reviews| Index: third_party/WebKit/Source/modules/credentialmanager/SiteBoundCredential.idl |
| diff --git a/third_party/WebKit/Source/modules/credentialmanager/SiteBoundCredential.idl b/third_party/WebKit/Source/modules/credentialmanager/SiteBoundCredential.idl |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..e2504d88108b420e43d96309aefbf52ef66bf1db |
| --- /dev/null |
| +++ b/third_party/WebKit/Source/modules/credentialmanager/SiteBoundCredential.idl |
| @@ -0,0 +1,13 @@ |
| +// Copyright 2016 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-credential-management/#siteboundcredential |
| + |
| +[ |
| + RuntimeEnabled=CredentialManager, |
| + Exposed=Window |
| +] interface SiteBoundCredential : Credential { |
| + readonly attribute DOMString name; |
|
philipj_slow
2016/04/19 09:20:37
Spec says USVString for both of these. I shouldn't
Mike West
2016/04/25 10:20:13
Hrm. No. `name` should be a DOMString. iconURL is
philipj_slow
2016/04/25 11:54:21
OK, so USVString "for things that get utf-8 encode
|
| + readonly attribute DOMString iconURL; |
| +}; |