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

commit-queue at webkit.org commit-queue at webkit.org
Wed Dec 22 14:09:03 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 4213607ed22e5350c594a373671303e8cbe8e539
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Oct 5 04:41:12 2010 +0000

    2010-10-04  Eric Uhrhane  <ericu at chromium.org>
    
            Reviewed by David Levin.
    
            Hook FileEntry::createWriter to DOMFileSystem::createWriter
            https://bugs.webkit.org/show_bug.cgi?id=46908
    
            No new tests--still waiting for the first complete implementation.
    
            * fileapi/FileEntry.cpp:
            (WebCore::FileEntry::createWriter):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@69069 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 1bee063..6e35e33 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,15 @@
+2010-10-04  Eric Uhrhane  <ericu at chromium.org>
+
+        Reviewed by David Levin.
+
+        Hook FileEntry::createWriter to DOMFileSystem::createWriter
+        https://bugs.webkit.org/show_bug.cgi?id=46908
+
+        No new tests--still waiting for the first complete implementation.
+
+        * fileapi/FileEntry.cpp:
+        (WebCore::FileEntry::createWriter):
+
 2010-10-04  Yael Aharon  <yael.aharon at nokia.com>
 
         Reviewed by Antonio Gomes.
diff --git a/WebCore/fileapi/FileEntry.cpp b/WebCore/fileapi/FileEntry.cpp
index 2d1e623..ce0c114 100644
--- a/WebCore/fileapi/FileEntry.cpp
+++ b/WebCore/fileapi/FileEntry.cpp
@@ -44,9 +44,9 @@ FileEntry::FileEntry(DOMFileSystem* fileSystem, const String& fullPath)
 {
 }
 
-void FileEntry::createWriter(PassRefPtr<FileWriterCallback>, PassRefPtr<ErrorCallback>)
+void FileEntry::createWriter(PassRefPtr<FileWriterCallback> successCallback, PassRefPtr<ErrorCallback> errorCallback)
 {
-    // FIXME: to be implemented.
+    m_fileSystem->createWriter(this, successCallback, errorCallback);
 }
 
 void FileEntry::file(PassRefPtr<FileCallback>, PassRefPtr<ErrorCallback>)

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list