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

johnnyg at google.com johnnyg at google.com
Wed Dec 22 11:44:10 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 6ac7b0bc9c2826839e6e2f80c1efab64855d7bd6
Author: johnnyg at google.com <johnnyg at google.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Aug 5 11:34:35 2010 +0000

    2010-08-05  John Gregg  <johnnyg at google.com>
    
            Reviewed by Darin Fisher.
    
            [chromium] WebFileChooserParams should have default constructor
            https://bugs.webkit.org/show_bug.cgi?id=43435
    
            * public/WebFileChooserParams.h:
            (WebKit::WebFileChooserParams::WebFileChooserParams):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@64733 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/chromium/ChangeLog b/WebKit/chromium/ChangeLog
index 48d86f1..02620ec 100644
--- a/WebKit/chromium/ChangeLog
+++ b/WebKit/chromium/ChangeLog
@@ -1,3 +1,13 @@
+2010-08-05  John Gregg  <johnnyg at google.com>
+
+        Reviewed by Darin Fisher.
+
+        [chromium] WebFileChooserParams should have default constructor
+        https://bugs.webkit.org/show_bug.cgi?id=43435
+
+        * public/WebFileChooserParams.h:
+        (WebKit::WebFileChooserParams::WebFileChooserParams):
+
 2010-08-05  Victoria Kirst  <vrk at google.com>
 
         Reviewed by David Levin.
diff --git a/WebKit/chromium/public/WebFileChooserParams.h b/WebKit/chromium/public/WebFileChooserParams.h
index 2a30944..8e56d70 100644
--- a/WebKit/chromium/public/WebFileChooserParams.h
+++ b/WebKit/chromium/public/WebFileChooserParams.h
@@ -59,6 +59,12 @@ struct WebFileChooserParams {
     //  - replacing with other files
     // before opening a file chooser dialog.
     WebVector<WebString> selectedFiles;
+
+    WebFileChooserParams()
+        : multiSelect(false)
+        , directory(false)
+    {
+    }
 };
 
 } // namespace WebKit

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list