Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 [ | 5 [ |
| 6 RuntimeEnabled=CredentialManager, | 6 RuntimeEnabled=CredentialManager, |
| 7 RaisesException=Constructor, | 7 RaisesException=Constructor, |
| 8 Constructor(DOMString id, DOMString password, optional DOMString name, optio nal DOMString avatarURL) | 8 Constructor(DOMString id, DOMString password, optional DOMString name, optio nal DOMString avatarURL) |
| 9 ] interface LocalCredential : Credential { | 9 ] interface PasswordCredential : Credential { |
|
vabr (Chromium)
2015/06/01 09:10:13
Just to double-check -- as you pointed out in the
Mike West
2015/06/01 09:12:03
That will be done in patch #17. It will introduce
| |
| 10 readonly attribute DOMString password; | 10 readonly attribute DOMString password; |
| 11 readonly attribute FormData formData; | 11 readonly attribute FormData formData; |
| 12 }; | 12 }; |
| OLD | NEW |