[SCM] WebKit Debian packaging branch, webkit-1.3, updated. upstream/1.3.7-4207-g178b198

crogers at google.com crogers at google.com
Sun Feb 20 23:35:42 UTC 2011


The following commit has been merged in the webkit-1.3 branch:
commit 3817002eb44a8c8598ba276925425ce5e002e52b
Author: crogers at google.com <crogers at google.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Jan 21 23:28:06 2011 +0000

    2011-01-21  Chris Rogers  <crogers at google.com>
    
            Reviewed by Kenneth Russell.
    
            Fix audio build: change ChromiumBridge to PlatformBridge
            https://bugs.webkit.org/show_bug.cgi?id=52928
    
            No new tests since audio API is not yet implemented.
    
            * platform/audio/chromium/AudioBusChromium.cpp:
            (WebCore::AudioBus::loadPlatformResource):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@76400 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog
index 1897fa2..f905350 100644
--- a/Source/WebCore/ChangeLog
+++ b/Source/WebCore/ChangeLog
@@ -2,6 +2,18 @@
 
         Reviewed by Kenneth Russell.
 
+        Fix audio build: change ChromiumBridge to PlatformBridge
+        https://bugs.webkit.org/show_bug.cgi?id=52928
+
+        No new tests since audio API is not yet implemented.
+
+        * platform/audio/chromium/AudioBusChromium.cpp:
+        (WebCore::AudioBus::loadPlatformResource):
+
+2011-01-21  Chris Rogers  <crogers at google.com>
+
+        Reviewed by Kenneth Russell.
+
         Add FFTFrameStub to avoid link errors during bringup on platforms without an FFT implementation
         https://bugs.webkit.org/show_bug.cgi?id=52922
 
diff --git a/Source/WebCore/platform/audio/chromium/AudioBusChromium.cpp b/Source/WebCore/platform/audio/chromium/AudioBusChromium.cpp
index 232f13e..83ab9bf 100644
--- a/Source/WebCore/platform/audio/chromium/AudioBusChromium.cpp
+++ b/Source/WebCore/platform/audio/chromium/AudioBusChromium.cpp
@@ -36,7 +36,7 @@ namespace WebCore {
 
 PassOwnPtr<AudioBus> AudioBus::loadPlatformResource(const char* name, double sampleRate)
 {
-    return ChromiumBridge::loadPlatformAudioResource(name, sampleRate);
+    return PlatformBridge::loadPlatformAudioResource(name, sampleRate);
 }
 
 PassOwnPtr<AudioBus> createBusFromInMemoryAudioFile(const void* data, size_t dataSize, bool mixToMono, double sampleRate)

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list