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

hclam at chromium.org hclam at chromium.org
Wed Dec 22 13:50:15 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 026746c57a20e4e915f8354f5d4d3d93c0fa6840
Author: hclam at chromium.org <hclam at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Sep 28 01:50:41 2010 +0000

    Build fix. Not reviewed.
    
    Add a default for unhandled cases for switch statement.
    
    * src/VideoFrameChromiumImpl.cpp:
    (WebKit::VideoFrameChromiumImpl::requiredTextureSize):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@68468 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/chromium/ChangeLog b/WebKit/chromium/ChangeLog
index 91c6732..644fab3 100644
--- a/WebKit/chromium/ChangeLog
+++ b/WebKit/chromium/ChangeLog
@@ -1,3 +1,12 @@
+2010-09-27  Alpha Lam  <hclam at chromium.org>
+
+        Build fix. Not reviewed.
+
+        Add a default for unhandled cases for switch statement.
+
+        * src/VideoFrameChromiumImpl.cpp:
+        (WebKit::VideoFrameChromiumImpl::requiredTextureSize):
+
 2010-09-27  Victoria Kirst  <vrk at google.com>
 
         Reviewed by James Robinson.
diff --git a/WebKit/chromium/src/VideoFrameChromiumImpl.cpp b/WebKit/chromium/src/VideoFrameChromiumImpl.cpp
index 60e75b8..f7e55d1 100644
--- a/WebKit/chromium/src/VideoFrameChromiumImpl.cpp
+++ b/WebKit/chromium/src/VideoFrameChromiumImpl.cpp
@@ -121,6 +121,8 @@ const IntSize VideoFrameChromiumImpl::requiredTextureSize(unsigned plane) const
             return IntSize(stride(plane), height() / 2);
         case vPlane:
             return IntSize(stride(plane), height() / 2);
+        default:
+            break;
         }
     }
     return IntSize();

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list