[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 16:26:04 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 315e5d0bbce6673d0e006e266db5f6cb8bb1aeff
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Nov 23 17:29:20 2010 +0000

    2010-11-23  Adam Bergkvist  <adam.bergkvist at ericsson.com>
    
            Reviewed by Martin Robinson.
    
            [GTK] Building with Blob support fails
            https://bugs.webkit.org/show_bug.cgi?id=49724
    
            Build fix.
    
            * GNUmakefile.am:
            * platform/gtk/FileSystemGtk.cpp:
            (WebCore::seekFile): Not implemented.
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@72614 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 1967e98..073b8d4 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,16 @@
+2010-11-23  Adam Bergkvist  <adam.bergkvist at ericsson.com>
+
+        Reviewed by Martin Robinson.
+
+        [GTK] Building with Blob support fails
+        https://bugs.webkit.org/show_bug.cgi?id=49724
+
+        Build fix.
+
+        * GNUmakefile.am:
+        * platform/gtk/FileSystemGtk.cpp:
+        (WebCore::seekFile): Not implemented.
+
 2010-11-23  Kenneth Rohde Christiansen  <kenneth at webkit.org>
 
         Reviewed by Andreas Kling.
diff --git a/WebCore/GNUmakefile.am b/WebCore/GNUmakefile.am
index 9f28a30..6541fe1 100644
--- a/WebCore/GNUmakefile.am
+++ b/WebCore/GNUmakefile.am
@@ -246,10 +246,14 @@ webcore_built_sources += \
 	DerivedSources/WebCore/JSFileError.cpp \
 	DerivedSources/WebCore/JSFileError.h \
 	DerivedSources/WebCore/JSFile.h \
+	DerivedSources/WebCore/JSFileException.cpp \
+	DerivedSources/WebCore/JSFileException.h \
 	DerivedSources/WebCore/JSFileList.cpp \
 	DerivedSources/WebCore/JSFileList.h \
 	DerivedSources/WebCore/JSFileReader.cpp \
 	DerivedSources/WebCore/JSFileReader.h \
+	DerivedSources/WebCore/JSFileReaderSync.cpp \
+	DerivedSources/WebCore/JSFileReaderSync.h \
 	DerivedSources/WebCore/JSFloat32Array.cpp \
 	DerivedSources/WebCore/JSFloat32Array.h \
 	DerivedSources/WebCore/JSGeolocation.cpp \
@@ -668,6 +672,7 @@ webcore_sources += \
 	WebCore/bindings/js/GCController.cpp \
 	WebCore/bindings/js/GCController.h \
 	WebCore/bindings/js/IDBBindingUtilities.h \
+	WebCore/bindings/js/JSArrayBufferCustom.cpp \
 	WebCore/bindings/js/JSAttrCustom.cpp \
 	WebCore/bindings/js/JSAudioConstructor.cpp \
 	WebCore/bindings/js/JSAudioConstructor.h \
@@ -741,6 +746,7 @@ webcore_sources += \
 	WebCore/bindings/js/JSExceptionBase.cpp \
 	WebCore/bindings/js/JSExceptionBase.h \
 	WebCore/bindings/js/JSFileReaderCustom.cpp \
+	WebCore/bindings/js/JSFloat32ArrayCustom.cpp \
 	WebCore/bindings/js/JSGeolocationCustom.cpp \
 	WebCore/bindings/js/JSHTMLAllCollectionCustom.cpp \
 	WebCore/bindings/js/JSHTMLAppletElementCustom.cpp \
@@ -772,6 +778,9 @@ webcore_sources += \
 	WebCore/bindings/js/JSImageDataCustom.cpp \
 	WebCore/bindings/js/JSInjectedScriptHostCustom.cpp \
 	WebCore/bindings/js/JSInspectorFrontendHostCustom.cpp \
+	WebCore/bindings/js/JSInt16ArrayCustom.cpp \
+	WebCore/bindings/js/JSInt32ArrayCustom.cpp \
+	WebCore/bindings/js/JSInt8ArrayCustom.cpp \
 	WebCore/bindings/js/JSJavaScriptCallFrameCustom.cpp \
 	WebCore/bindings/js/JSLazyEventListener.cpp \
 	WebCore/bindings/js/JSLazyEventListener.h \
@@ -816,6 +825,9 @@ webcore_sources += \
 	WebCore/bindings/js/JSTreeWalkerCustom.cpp \
 	WebCore/bindings/js/JSWebKitCSSKeyframeRuleCustom.cpp \
 	WebCore/bindings/js/JSWebKitCSSKeyframesRuleCustom.cpp \
+	WebCore/bindings/js/JSUint16ArrayCustom.cpp \
+	WebCore/bindings/js/JSUint32ArrayCustom.cpp \
+	WebCore/bindings/js/JSUint8ArrayCustom.cpp \
 	WebCore/bindings/js/JSWebKitCSSMatrixCustom.cpp \
 	WebCore/bindings/js/JSWebKitPointCustom.cpp \
 	WebCore/bindings/js/JSWebSocketCustom.cpp \
@@ -1494,7 +1506,10 @@ webcore_sources += \
 	WebCore/html/BaseTextInputType.h \
 	WebCore/html/ButtonInputType.cpp \
 	WebCore/html/ButtonInputType.h \
+	WebCore/html/canvas/ArrayBuffer.cpp \
 	WebCore/html/canvas/ArrayBuffer.h \
+	WebCore/html/canvas/ArrayBufferView.cpp \
+	WebCore/html/canvas/ArrayBufferView.h \
 	WebCore/html/canvas/CanvasContextAttributes.h \
 	WebCore/html/canvas/CanvasGradient.cpp \
 	WebCore/html/canvas/CanvasGradient.h \
@@ -1508,6 +1523,20 @@ webcore_sources += \
 	WebCore/html/canvas/CanvasRenderingContext.h \
 	WebCore/html/canvas/CanvasStyle.cpp \
 	WebCore/html/canvas/CanvasStyle.h \
+	WebCore/html/canvas/Float32Array.cpp \
+	WebCore/html/canvas/Float32Array.h \
+	WebCore/html/canvas/Int16Array.cpp \
+	WebCore/html/canvas/Int16Array.h \
+	WebCore/html/canvas/Int32Array.cpp \
+	WebCore/html/canvas/Int32Array.h \
+	WebCore/html/canvas/Int8Array.cpp \
+	WebCore/html/canvas/Int8Array.h \
+	WebCore/html/canvas/Uint16Array.cpp \
+	WebCore/html/canvas/Uint16Array.h \
+	WebCore/html/canvas/Uint32Array.cpp \
+	WebCore/html/canvas/Uint32Array.h \
+	WebCore/html/canvas/Uint8Array.cpp \
+	WebCore/html/canvas/Uint8Array.h \
 	WebCore/html/DOMSettableTokenList.cpp \
 	WebCore/html/DOMSettableTokenList.h \
 	WebCore/html/DOMTokenList.cpp \
diff --git a/WebCore/platform/gtk/FileSystemGtk.cpp b/WebCore/platform/gtk/FileSystemGtk.cpp
index 6f3fa19..4424f0a 100644
--- a/WebCore/platform/gtk/FileSystemGtk.cpp
+++ b/WebCore/platform/gtk/FileSystemGtk.cpp
@@ -257,6 +257,12 @@ void closeFile(PlatformFileHandle& handle)
     }
 }
 
+long long seekFile(PlatformFileHandle handle, long long offset, FileSeekOrigin origin)
+{
+    // FIXME - Awaiting implementation, see https://bugs.webkit.org/show_bug.cgi?id=43878
+    return -1;
+}
+
 int writeToFile(PlatformFileHandle handle, const char* data, int length)
 {
     int totalBytesWritten = 0;

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list