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

andreas.kling at nokia.com andreas.kling at nokia.com
Wed Dec 22 15:50:41 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit b2bfec21d0134cb8b5866babd78e95ae01e50304
Author: andreas.kling at nokia.com <andreas.kling at nokia.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sun Nov 14 19:39:47 2010 +0000

    2010-11-14  Andreas Kling  <kling at webkit.org>
    
            Reviewed by Antonio Gomes.
    
            http/tests/plugins tests print "Unhandled variable" to stderr under Qt
            https://bugs.webkit.org/show_bug.cgi?id=33438
    
            Stifle "Unhandled variable" warning to match what the other
            TestNetscapePlugin does (NPP_GetValue in TestNetscapePlugIn/main.cpp
            simply returns NPERR_GENERIC_ERROR for unhandled variables.)
    
            * DumpRenderTree/unix/TestNetscapePlugin/TestNetscapePlugin.cpp:
            (webkit_test_plugin_get_value):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@71985 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index 288a94e..e619435 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,3 +1,17 @@
+2010-11-14  Andreas Kling  <kling at webkit.org>
+
+        Reviewed by Antonio Gomes.
+
+        http/tests/plugins tests print "Unhandled variable" to stderr under Qt
+        https://bugs.webkit.org/show_bug.cgi?id=33438
+
+        Stifle "Unhandled variable" warning to match what the other
+        TestNetscapePlugin does (NPP_GetValue in TestNetscapePlugIn/main.cpp
+        simply returns NPERR_GENERIC_ERROR for unhandled variables.)
+
+        * DumpRenderTree/unix/TestNetscapePlugin/TestNetscapePlugin.cpp:
+        (webkit_test_plugin_get_value):
+
 2010-11-13  David Levin  <levin at chromium.org>
 
         Reviewed by Eric Seidel.
diff --git a/WebKitTools/DumpRenderTree/unix/TestNetscapePlugin/TestNetscapePlugin.cpp b/WebKitTools/DumpRenderTree/unix/TestNetscapePlugin/TestNetscapePlugin.cpp
index 2298ef1..755fba0 100644
--- a/WebKitTools/DumpRenderTree/unix/TestNetscapePlugin/TestNetscapePlugin.cpp
+++ b/WebKitTools/DumpRenderTree/unix/TestNetscapePlugin/TestNetscapePlugin.cpp
@@ -340,7 +340,6 @@ webkit_test_plugin_get_value(NPP instance, NPPVariable variable, void *value)
             err = NPERR_GENERIC_ERROR;
             break;
         default:
-            fprintf(stderr, "Unhandled variable\n");
             err = NPERR_GENERIC_ERROR;
             break;
     }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list