Chromium Code Reviews| Index: third_party/WebKit/public/platform/WebContentDecryptionModuleException.h |
| diff --git a/third_party/WebKit/public/platform/WebContentDecryptionModuleException.h b/third_party/WebKit/public/platform/WebContentDecryptionModuleException.h |
| index e17dc79b5065cae4214268984a4578557a5edf96..78b186041f814304b2b00535568752e3f7c9c1f8 100644 |
| --- a/third_party/WebKit/public/platform/WebContentDecryptionModuleException.h |
| +++ b/third_party/WebKit/public/platform/WebContentDecryptionModuleException.h |
| @@ -7,14 +7,13 @@ |
| namespace blink { |
| +// From http://w3c.github.io/encrypted-media/#exceptions. |
|
ddorwin
2016/09/19 22:33:53
http*s* please :)
jrummell
2016/09/20 01:59:17
Done.
|
| enum WebContentDecryptionModuleException { |
| + WebContentDecryptionModuleExceptionTypeError, |
| WebContentDecryptionModuleExceptionNotSupportedError, |
| WebContentDecryptionModuleExceptionInvalidStateError, |
| - WebContentDecryptionModuleExceptionInvalidAccessError, |
| WebContentDecryptionModuleExceptionQuotaExceededError, |
| - WebContentDecryptionModuleExceptionUnknownError, |
| - WebContentDecryptionModuleExceptionClientError, |
| - WebContentDecryptionModuleExceptionOutputError, |
| + WebContentDecryptionModuleExceptionUnknownError |
|
ddorwin
2016/09/19 22:33:53
This isn't listed at that URL. Do we still need it
jrummell
2016/09/20 01:59:17
Yes. Added comment.
|
| }; |
| } // namespace blink |