[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-10851-g50815da

philn at webkit.org philn at webkit.org
Wed Dec 22 18:18:27 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 646b03b153d940d2ce8b2beaf6305f5ba617782c
Author: philn at webkit.org <philn at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Dec 9 18:49:38 2010 +0000

    2010-12-09  Philippe Normand  <pnormand at igalia.com>
    
            Reviewed by Eric Carlson.
    
            [GStreamer] disable fullscreen on MacOS Tiger and Leopard
            https://bugs.webkit.org/show_bug.cgi?id=50748
    
            Don't support fullscreen video on Tiger and Leopard, just like the
            QTKit player.
    
            * platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp:
            (WebCore::MediaPlayerPrivateGStreamer::supportsFullscreen):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@73626 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 7449eb3..1d76905 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,16 @@
+2010-12-09  Philippe Normand  <pnormand at igalia.com>
+
+        Reviewed by Eric Carlson.
+
+        [GStreamer] disable fullscreen on MacOS Tiger and Leopard
+        https://bugs.webkit.org/show_bug.cgi?id=50748
+
+        Don't support fullscreen video on Tiger and Leopard, just like the
+        QTKit player.
+
+        * platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp:
+        (WebCore::MediaPlayerPrivateGStreamer::supportsFullscreen):
+
 2010-12-06  Philippe Normand  <pnormand at igalia.com>
 
         Reviewed by Martin Robinson.
diff --git a/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp b/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp
index f11c3cc..f1fdf69 100644
--- a/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp
+++ b/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp
@@ -1482,7 +1482,12 @@ bool MediaPlayerPrivateGStreamer::hasSingleSecurityOrigin() const
 
 bool MediaPlayerPrivateGStreamer::supportsFullscreen() const
 {
+#if defined(BUILDING_ON_TIGER) || defined(BUILDING_ON_LEOPARD)
+    // See <rdar://problem/7389945>
+    return false;
+#else
     return true;
+#endif
 }
 
 PlatformMedia MediaPlayerPrivateGStreamer::platformMedia() const

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list