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

Unified Diff: third_party/WebCore/testing/Internals.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/testing/Internals.idl
diff --git a/third_party/WebCore/testing/Internals.idl b/third_party/WebCore/testing/Internals.idl
index 761d030d2285424921b7ce90f5fa399b0331ec66..bf63479d4cf743ca44a7b89ec30fbe29b5d15baa 100644
--- a/third_party/WebCore/testing/Internals.idl
+++ b/third_party/WebCore/testing/Internals.idl
@@ -1,5 +1,6 @@
/*
* Copyright (C) 2012 Google Inc. All rights reserved.
+ * Copyright (C) 2013 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -66,7 +67,15 @@
boolean hasSelectorForAttributeInShadow(in Element host, in DOMString attributeName) raises (DOMException);
boolean hasSelectorForPseudoClassInShadow(in Element host, in DOMString pseudoClass) raises (DOMException);
+ // CSS Animation testing.
+ unsigned long numberOfActiveAnimations();
+ void suspendAnimations(in Document document) raises (DOMException);
+ void resumeAnimations(in Document document) raises (DOMException);
+ boolean pauseAnimationAtTimeOnElement(in DOMString animationName, in double pauseTime, in Element element) raises (DOMException);
boolean pauseAnimationAtTimeOnPseudoElement(in DOMString animationName, in double pauseTime, in Element element, in DOMString pseudoId) raises (DOMException);
+
+ // CSS Transition testing.
+ boolean pauseTransitionAtTimeOnElement(in DOMString propertyName, in double pauseTime, in Element element) raises (DOMException);
boolean pauseTransitionAtTimeOnPseudoElement(in DOMString property, in double pauseTime, in Element element, in DOMString pseudoId) raises (DOMException);
Node nextSiblingByWalker(in Node node) raises(DOMException);
@@ -163,9 +172,7 @@
boolean isPageBoxVisible(in Document document, in long pageNumber) raises (DOMException);
readonly attribute InternalSettings settings;
-
- void suspendAnimations(in Document document) raises (DOMException);
- void resumeAnimations(in Document document) raises (DOMException);
+ readonly attribute unsigned long workerThreadCount;
// Flags for layerTreeAsText.
const unsigned short LAYER_TREE_INCLUDES_VISIBLE_RECTS = 1;
@@ -242,4 +249,6 @@
ArrayBuffer serializeObject(in SerializedScriptValue obj);
void setUsesOverlayScrollbars(in boolean enabled);
+
+ [Conditional=ENCRYPTED_MEDIA_V2] void initializeMockCDM();
};

Powered by Google App Engine
This is Rietveld 408576698