[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:03:09 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 82f3b7f91ef7758eed93f2948bdc737c9734bb33
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Oct 1 22:09:45 2010 +0000

    2010-10-01  Eric Uhrhane  <ericu at chromium.org>
    
            Reviewed by Nate Chapin.
    
            Add v8 binding helpers to make FileWriter be an EventTarget.
            https://bugs.webkit.org/show_bug.cgi?id=46910
    
            No new tests; still waiting for the first complete implementation.
    
            * bindings/v8/V8DOMWrapper.cpp:
            (WebCore::V8DOMWrapper::convertEventTargetToV8Object):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@68931 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 9b29c1b..612d384 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,15 @@
+2010-10-01  Eric Uhrhane  <ericu at chromium.org>
+
+        Reviewed by Nate Chapin.
+
+        Add v8 binding helpers to make FileWriter be an EventTarget.
+        https://bugs.webkit.org/show_bug.cgi?id=46910
+
+        No new tests; still waiting for the first complete implementation.
+
+        * bindings/v8/V8DOMWrapper.cpp:
+        (WebCore::V8DOMWrapper::convertEventTargetToV8Object):
+
 2010-10-01  David Hyatt  <hyatt at apple.com>
 
         Reviewed by Sam Weinig.
diff --git a/WebCore/bindings/v8/V8DOMWrapper.cpp b/WebCore/bindings/v8/V8DOMWrapper.cpp
index e7a8142..dd0446c 100644
--- a/WebCore/bindings/v8/V8DOMWrapper.cpp
+++ b/WebCore/bindings/v8/V8DOMWrapper.cpp
@@ -48,6 +48,7 @@
 #include "V8EventListenerList.h"
 #include "V8EventSource.h"
 #include "V8FileReader.h"
+#include "V8FileWriter.h"
 #include "V8HTMLCollection.h"
 #include "V8HTMLDocument.h"
 #include "V8IDBRequest.h"
@@ -428,6 +429,11 @@ v8::Handle<v8::Value> V8DOMWrapper::convertEventTargetToV8Object(EventTarget* ta
         return toV8(fileReader);
 #endif
 
+#if ENABLE(FILE_SYSTEM)
+    if (FileWriter* fileWriter = target->toFileWriter())
+        return toV8(fileWriter);
+#endif
+
     ASSERT(0);
     return notHandledByInterceptor();
 }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list