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

satish at chromium.org satish at chromium.org
Wed Dec 22 14:56:51 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit d836dc9353c0ca229e4246eda577037234aee110
Author: satish at chromium.org <satish at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Oct 25 22:19:40 2010 +0000

    2010-10-25  Satish Sampath  <satish at chromium.org>
    
            Unreviewed, fix for a build break caused by my earlier patch.
    
            * public/WebSpeechInputListener.h:
            (WebKit::WebSpeechInputListener::setRecognitionResult): Explicitly invoking the correct constructor.
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@70494 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/chromium/ChangeLog b/WebKit/chromium/ChangeLog
index c5ba564..994787e 100644
--- a/WebKit/chromium/ChangeLog
+++ b/WebKit/chromium/ChangeLog
@@ -1,3 +1,10 @@
+2010-10-25  Satish Sampath  <satish at chromium.org>
+
+        Unreviewed, fix for a build break caused by my earlier patch.
+
+        * public/WebSpeechInputListener.h:
+        (WebKit::WebSpeechInputListener::setRecognitionResult): Explicitly invoking the correct constructor.
+
 2010-10-21  Satish Sampath  <satish at chromium.org>
 
         Reviewed by Jeremy Orlow.
diff --git a/WebKit/chromium/public/WebSpeechInputListener.h b/WebKit/chromium/public/WebSpeechInputListener.h
index 04d6f72..c6a92c0 100644
--- a/WebKit/chromium/public/WebSpeechInputListener.h
+++ b/WebKit/chromium/public/WebSpeechInputListener.h
@@ -61,7 +61,7 @@ public:
     // using the above call.
     virtual void setRecognitionResult(int requestId, const WebString& result)
     {
-        WebSpeechInputResultArray results(1U);
+        WebSpeechInputResultArray results(static_cast<size_t>(1));
         results[0].set(result, 1.0);
         setRecognitionResult(requestId, results);
     }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list