Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3291)

Unified Diff: third_party/WebCore/html/MediaKeyError.idl

Issue 12316066: Update WebKit idl files after chrome roll (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Remove deltaMode from WheelEvent template. Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebCore/html/MediaKeyError.idl
diff --git a/third_party/WebCore/html/MediaKeyError.idl b/third_party/WebCore/html/MediaKeyError.idl
index f7279d39c881b1ae971480a32014c9a66e714419..9631551392d6e9232f4fe66bf6804eb02809bc5b 100644
--- a/third_party/WebCore/html/MediaKeyError.idl
+++ b/third_party/WebCore/html/MediaKeyError.idl
@@ -23,11 +23,11 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-[
- Conditional=ENCRYPTED_MEDIA,
+interface [
+ Conditional=ENCRYPTED_MEDIA|ENCRYPTED_MEDIA_V2,
V8EnabledAtRuntime=encryptedMedia,
ImplementationLacksVTable
-] interface MediaKeyError {
+] MediaKeyError {
const unsigned short MEDIA_KEYERR_UNKNOWN = 1;
const unsigned short MEDIA_KEYERR_CLIENT = 2;
const unsigned short MEDIA_KEYERR_SERVICE = 3;
@@ -35,4 +35,5 @@
const unsigned short MEDIA_KEYERR_HARDWARECHANGE = 5;
const unsigned short MEDIA_KEYERR_DOMAIN = 6;
readonly attribute unsigned short code;
+ [Conditional=ENCRYPTED_MEDIA_V2] readonly attribute unsigned long systemCode;
};

Powered by Google App Engine
This is Rietveld 408576698