Chromium Code Reviews| Index: Source/modules/crypto/SubtleCrypto.idl |
| diff --git a/Source/modules/crypto/SubtleCrypto.idl b/Source/modules/crypto/SubtleCrypto.idl |
| index 0c2a8e43c39b3c172e9230581b3711da81ae7cff..9c9c5aadf7e493220c95a239da8d1d18ea36e8c8 100644 |
| --- a/Source/modules/crypto/SubtleCrypto.idl |
| +++ b/Source/modules/crypto/SubtleCrypto.idl |
| @@ -30,5 +30,10 @@ |
| NoInterfaceObject, |
| ] interface SubtleCrypto { |
| // TODO(eroman): Work in progress: http://crbug.com/245025. |
|
abarth-chromium
2013/07/02 06:46:36
Please remove this comment. All code is a work in
eroman
2013/07/02 08:12:27
Done.
|
| + [RaisesException] CryptoOperation encrypt(Dictionary algorithm); |
| + [RaisesException] CryptoOperation decrypt(Dictionary algorithm); |
| + [RaisesException] CryptoOperation sign(Dictionary algorithm); |
| + [RaisesException] CryptoOperation verify(Dictionary algorithm); |
| + [RaisesException] CryptoOperation digest(Dictionary algorithm); |
| }; |