Chromium Code Reviews| Index: Source/modules/crypto/CryptoOperation.idl |
| diff --git a/Source/modules/crypto/CryptoOperation.idl b/Source/modules/crypto/CryptoOperation.idl |
| index ba683a1b77ed663ff338999db41b9e1e439a4682..3bbb4c7e587de5ae07ecbec55f251d02a4e56a0a 100644 |
| --- a/Source/modules/crypto/CryptoOperation.idl |
| +++ b/Source/modules/crypto/CryptoOperation.idl |
| @@ -32,4 +32,10 @@ |
| NoInterfaceObject, |
| ] interface CryptoOperation { |
| readonly attribute Algorithm algorithm; |
| + |
| + CryptoOperation process(ArrayBuffer data); |
| + CryptoOperation process(ArrayBufferView data); |
| + |
| + any finish(); |
| + any abort(); |
|
abarth-chromium
2013/07/16 00:29:10
It's too bad we can't use the type Promise here, b
|
| }; |