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

kinuko at chromium.org kinuko at chromium.org
Wed Dec 22 14:33:17 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 81870660cf21b980cf123f9e54dec29d7bf25483
Author: kinuko at chromium.org <kinuko at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Oct 13 02:26:44 2010 +0000

    2010-10-12  Kinuko Yasuda  <kinuko at chromium.org>
    
            Reviewed by Jian Li.
    
            Pass platform path (rather than virtual path) when creating File from FileEntry
            https://bugs.webkit.org/show_bug.cgi?id=47563
    
            No new tests, the new test for FileWriter will be verifying this.
    
            * fileapi/FileEntry.cpp:
            (WebCore::FileEntry::file):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@69634 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index d07167c..93bda39 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,15 @@
+2010-10-12  Kinuko Yasuda  <kinuko at chromium.org>
+
+        Reviewed by Jian Li.
+
+        Pass platform path (rather than virtual path) when creating File from FileEntry
+        https://bugs.webkit.org/show_bug.cgi?id=47563
+
+        No new tests, the new test for FileWriter will be verifying this.
+
+        * fileapi/FileEntry.cpp:
+        (WebCore::FileEntry::file):
+
 2010-10-12 David Hyatt  <hyatt at apple.com>
 
         Reviewed by Dan Bernstein
diff --git a/WebCore/fileapi/FileEntry.cpp b/WebCore/fileapi/FileEntry.cpp
index c7478fb..80ae0d0 100644
--- a/WebCore/fileapi/FileEntry.cpp
+++ b/WebCore/fileapi/FileEntry.cpp
@@ -53,7 +53,7 @@ void FileEntry::createWriter(PassRefPtr<FileWriterCallback> successCallback, Pas
 
 void FileEntry::file(PassRefPtr<FileCallback> successCallback, PassRefPtr<ErrorCallback>)
 {
-    filesystem()->scheduleCallback(successCallback, File::create(m_fullPath));
+    filesystem()->scheduleCallback(successCallback, File::create(filesystem()->asyncFileSystem()->virtualToPlatformPath(m_fullPath)));
 }
 
 } // namespace

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list