Title: [128800] trunk
Revision
128800
Author
[email protected]
Date
2012-09-17 13:55:20 -0700 (Mon, 17 Sep 2012)

Log Message

[BlackBerry] Enable VIDEO_TRACK
https://bugs.webkit.org/show_bug.cgi?id=96949

Reviewed by Antonio Gomes.

.:

Turn on VIDEO_TRACK feature.

* Source/cmake/OptionsBlackBerry.cmake:

Source/WebCore:

Turn on runtime feature for VIDEO_TRACK.

* bindings/generic/RuntimeEnabledFeatures.cpp:
(WebCore):

Tools:

* Scripts/webkitperl/FeatureList.pm:

Modified Paths

Diff

Modified: trunk/ChangeLog (128799 => 128800)


--- trunk/ChangeLog	2012-09-17 20:50:36 UTC (rev 128799)
+++ trunk/ChangeLog	2012-09-17 20:55:20 UTC (rev 128800)
@@ -1,3 +1,14 @@
+2012-09-17  Rob Buis  <[email protected]>
+
+        [BlackBerry] Enable VIDEO_TRACK
+        https://bugs.webkit.org/show_bug.cgi?id=96949
+
+        Reviewed by Antonio Gomes.
+
+        Turn on VIDEO_TRACK feature.
+
+        * Source/cmake/OptionsBlackBerry.cmake:
+
 2012-09-17  Zan Dobersek  <[email protected]>
 
         [Gtk] Remove configuration options for stable features that are currently enabled

Modified: trunk/Source/WebCore/ChangeLog (128799 => 128800)


--- trunk/Source/WebCore/ChangeLog	2012-09-17 20:50:36 UTC (rev 128799)
+++ trunk/Source/WebCore/ChangeLog	2012-09-17 20:55:20 UTC (rev 128800)
@@ -1,3 +1,15 @@
+2012-09-17  Rob Buis  <[email protected]>
+
+        [BlackBerry] Enable VIDEO_TRACK
+        https://bugs.webkit.org/show_bug.cgi?id=96949
+
+        Reviewed by Antonio Gomes.
+
+        Turn on runtime feature for VIDEO_TRACK.
+
+        * bindings/generic/RuntimeEnabledFeatures.cpp:
+        (WebCore):
+
 2012-09-17  Adam Barth  <[email protected]>
 
         Measure the usage of window.webkitIndexedDB so we can measure the transition to webkit.indexedDB

Modified: trunk/Source/WebCore/bindings/generic/RuntimeEnabledFeatures.cpp (128799 => 128800)


--- trunk/Source/WebCore/bindings/generic/RuntimeEnabledFeatures.cpp	2012-09-17 20:50:36 UTC (rev 128799)
+++ trunk/Source/WebCore/bindings/generic/RuntimeEnabledFeatures.cpp	2012-09-17 20:55:20 UTC (rev 128800)
@@ -175,7 +175,7 @@
 #endif
 
 #if ENABLE(VIDEO_TRACK)
-#if PLATFORM(MAC) || PLATFORM(GTK) || PLATFORM(EFL) || PLATFORM(CHROMIUM)
+#if PLATFORM(MAC) || PLATFORM(GTK) || PLATFORM(EFL) || PLATFORM(CHROMIUM) || PLATFORM(BLACKBERRY)
     bool RuntimeEnabledFeatures::isVideoTrackEnabled = true;
 #else
     bool RuntimeEnabledFeatures::isVideoTrackEnabled = false;

Modified: trunk/Source/cmake/OptionsBlackBerry.cmake (128799 => 128800)


--- trunk/Source/cmake/OptionsBlackBerry.cmake	2012-09-17 20:50:36 UTC (rev 128799)
+++ trunk/Source/cmake/OptionsBlackBerry.cmake	2012-09-17 20:55:20 UTC (rev 128800)
@@ -166,6 +166,7 @@
 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_TOUCH_EVENTS ON)
 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_VIBRATION ON)
 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_VIDEO ON)
+WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_VIDEO_TRACK ON)
 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_WEB_TIMING ON)
 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_WORKERS ON)
 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_XHR_RESPONSE_BLOB ON)

Modified: trunk/Tools/ChangeLog (128799 => 128800)


--- trunk/Tools/ChangeLog	2012-09-17 20:50:36 UTC (rev 128799)
+++ trunk/Tools/ChangeLog	2012-09-17 20:55:20 UTC (rev 128800)
@@ -1,3 +1,12 @@
+2012-09-17  Rob Buis  <[email protected]>
+
+        [BlackBerry] Enable VIDEO_TRACK
+        https://bugs.webkit.org/show_bug.cgi?id=96949
+
+        Reviewed by Antonio Gomes.
+
+        * Scripts/webkitperl/FeatureList.pm:
+
 2012-09-17  Rick Byers  <[email protected]>
 
         Add handling of new GestureTapCancel in DRT

Modified: trunk/Tools/Scripts/webkitperl/FeatureList.pm (128799 => 128800)


--- trunk/Tools/Scripts/webkitperl/FeatureList.pm	2012-09-17 20:50:36 UTC (rev 128799)
+++ trunk/Tools/Scripts/webkitperl/FeatureList.pm	2012-09-17 20:55:20 UTC (rev 128800)
@@ -397,7 +397,7 @@
       define => "ENABLE_VIDEO", default => (isAppleWebKit() || isGtk() || isBlackBerry() || isEfl()), value => \$videoSupport },
 
     { option => "video-track", desc => "Toggle Video Track support",
-      define => "ENABLE_VIDEO_TRACK", default => (isAppleWebKit() || isGtk() || isEfl()), value => \$videoTrackSupport },
+      define => "ENABLE_VIDEO_TRACK", default => (isAppleWebKit() || isGtk() || isEfl() || isBlackBerry()), value => \$videoTrackSupport },
 
     { option => "webgl", desc => "Toggle WebGL support",
       define => "ENABLE_WEBGL", default => (isAppleMacWebKit() || isGtk()), value => \$webglSupport },
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to