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

aroben at apple.com aroben at apple.com
Wed Dec 22 14:45:51 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit a5c4f2a93b3d09a8a7d0fa842b19d603225aa9e5
Author: aroben at apple.com <aroben at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Oct 19 17:47:48 2010 +0000

    Windows build fix
    
    * WebProcess/WebCoreSupport/win/WebErrorsWin.cpp:
    (WebKit::interruptForPolicyChangeError): Add a missing comma.
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@70067 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit2/ChangeLog b/WebKit2/ChangeLog
index aa29174..4158776 100644
--- a/WebKit2/ChangeLog
+++ b/WebKit2/ChangeLog
@@ -1,3 +1,10 @@
+2010-10-19  Adam Roben  <aroben at apple.com>
+
+        Windows build fix
+
+        * WebProcess/WebCoreSupport/win/WebErrorsWin.cpp:
+        (WebKit::interruptForPolicyChangeError): Add a missing comma.
+
 2010-10-19  Sam Weinig  <sam at webkit.org>
 
         Reviewed by Anders Carlsson.
diff --git a/WebKit2/WebProcess/WebCoreSupport/win/WebErrorsWin.cpp b/WebKit2/WebProcess/WebCoreSupport/win/WebErrorsWin.cpp
index af19d58..aeda10d 100644
--- a/WebKit2/WebProcess/WebCoreSupport/win/WebErrorsWin.cpp
+++ b/WebKit2/WebProcess/WebCoreSupport/win/WebErrorsWin.cpp
@@ -55,7 +55,7 @@ ResourceError cannotShowURLError(const ResourceRequest& request)
 
 ResourceError interruptForPolicyChangeError(const ResourceRequest& request)
 {
-    return ResourceError(WebError::webKitErrorDomain() kWKErrorCodeFrameLoadInterruptedByPolicyChange, request.url().string(), String());
+    return ResourceError(WebError::webKitErrorDomain(), kWKErrorCodeFrameLoadInterruptedByPolicyChange, request.url().string(), String());
 }
 
 ResourceError cannotShowMIMETypeError(const ResourceResponse& response)

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list