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

Unified Diff: third_party/WebCore/html/MediaError.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/MediaError.idl
diff --git a/third_party/WebCore/html/MediaError.idl b/third_party/WebCore/html/MediaError.idl
index e2cd27143cca5a7bc75488c8561d9653f09471bd..733744446b01c212c545f2e067ba8161f867c027 100644
--- a/third_party/WebCore/html/MediaError.idl
+++ b/third_party/WebCore/html/MediaError.idl
@@ -23,15 +23,15 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-[
+interface [
Conditional=VIDEO,
ImplementationLacksVTable
-] interface MediaError {
+] MediaError {
const unsigned short MEDIA_ERR_ABORTED = 1;
const unsigned short MEDIA_ERR_NETWORK = 2;
const unsigned short MEDIA_ERR_DECODE = 3;
const unsigned short MEDIA_ERR_SRC_NOT_SUPPORTED = 4;
-#if defined(ENABLE_ENCRYPTED_MEDIA) && ENABLE_ENCRYPTED_MEDIA
+#if (defined(ENABLE_ENCRYPTED_MEDIA) && ENABLE_ENCRYPTED_MEDIA) || (defined(ENABLE_ENCRYPTED_MEDIA_V2) && ENABLE_ENCRYPTED_MEDIA_V2)
const unsigned short MEDIA_ERR_ENCRYPTED = 5;
#endif
readonly attribute unsigned short code;

Powered by Google App Engine
This is Rietveld 408576698