Title: [160484] trunk/Source/WebCore
Revision
160484
Author
[email protected]
Date
2013-12-12 03:54:02 -0800 (Thu, 12 Dec 2013)

Log Message

Remove a few more guards mistakenly added in r160367

Reviewed by Carlos Garcia Campos

r160367 was too liberal in hiding APIs from the GObject DOM bindings.
We should expose the BatteryManager and the text and audio tracks.

* Modules/battery/BatteryManager.idl:
* html/HTMLMediaElement.idl:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (160483 => 160484)


--- trunk/Source/WebCore/ChangeLog	2013-12-12 10:17:20 UTC (rev 160483)
+++ trunk/Source/WebCore/ChangeLog	2013-12-12 11:54:02 UTC (rev 160484)
@@ -1,3 +1,15 @@
+2013-12-12  Martin Robinson  <[email protected]>
+
+        Remove a few more guards mistakenly added in r160367
+
+        Reviewed by Carlos Garcia Campos
+
+        r160367 was too liberal in hiding APIs from the GObject DOM bindings.
+        We should expose the BatteryManager and the text and audio tracks.
+
+        * Modules/battery/BatteryManager.idl:
+        * html/HTMLMediaElement.idl:
+
 2013-12-11  Darin Adler  <[email protected]>
 
         StylePendingImage needs to correctly manage the CSSValue pointer lifetime

Modified: trunk/Source/WebCore/Modules/battery/BatteryManager.idl (160483 => 160484)


--- trunk/Source/WebCore/Modules/battery/BatteryManager.idl	2013-12-12 10:17:20 UTC (rev 160483)
+++ trunk/Source/WebCore/Modules/battery/BatteryManager.idl	2013-12-12 11:54:02 UTC (rev 160484)
@@ -18,7 +18,6 @@
  */
 
 // http://dev.w3.org/2009/dap/system-info/battery-status.html
-#if !defined(LANGUAGE_GOBJECT) || !LANGUAGE_OBJECT
 [
     NoInterfaceObject,
     Conditional=BATTERY_STATUS,
@@ -44,4 +43,3 @@
                              optional boolean useCapture);
     [RaisesException] boolean dispatchEvent(Event event);
 };
-#endif

Modified: trunk/Source/WebCore/html/HTMLMediaElement.idl (160483 => 160484)


--- trunk/Source/WebCore/html/HTMLMediaElement.idl	2013-12-12 10:17:20 UTC (rev 160483)
+++ trunk/Source/WebCore/html/HTMLMediaElement.idl	2013-12-12 11:54:02 UTC (rev 160484)
@@ -108,7 +108,7 @@
     [ImplementedAs=setMediaKeys] void webkitSetMediaKeys(MediaKeys mediaKeys);
 #endif
 
-#if defined(ENABLE_VIDEO_TRACK) && ENABLE_VIDEO_TRACK && (!defined(LANGUAGE_GOBJECT) || !LANGUAGE_GOBJECT)
+#if defined(ENABLE_VIDEO_TRACK) && ENABLE_VIDEO_TRACK
     [RaisesException] TextTrack addTextTrack(DOMString kind, optional DOMString label, optional DOMString language);
     readonly attribute AudioTrackList audioTracks;
     readonly attribute TextTrackList textTracks;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to