MediaCrypto's constructor can throw RuntimeException.

Change-Id: I5718e9abab0d1465882580e826747d6a78bdefb5
related-to-bug: 6275919
This commit is contained in:
Andreas Huber
2012-04-17 11:23:06 -07:00
parent 901cb6160d
commit 2952c5d03c
3 changed files with 3 additions and 3 deletions

View File

@ -37,7 +37,7 @@ public final class MediaCrypto {
* @param uuid The UUID of the crypto scheme.
* @param initData Opaque initialization data specific to the crypto scheme.
*/
public MediaCrypto(byte[] uuid, byte[] initData) {
public MediaCrypto(byte[] uuid, byte[] initData) throws RuntimeException {
native_setup(uuid, initData);
}