Remove unused/deprecated render() method in chromium WebKit API
https://bugs.webkit.org/show_bug.cgi?id=106399
Reviewed by Kent Tamura.
Source/Platform:
* chromium/public/WebAudioDevice.h:
Source/WebKit/chromium:
* src/AudioDestinationChromium.cpp:
* src/AudioDestinationChromium.h:
(AudioDestinationChromium):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk/Source/Platform/chromium/public@139165 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebAudioDevice.h b/WebAudioDevice.h
index ab3e587..ebdf804 100644
--- a/WebAudioDevice.h
+++ b/WebAudioDevice.h
@@ -41,9 +41,6 @@
public:
virtual void render(const WebVector<float*>& sourceData, const WebVector<float*>& destinationData, size_t numberOfFrames) { };
- // FIXME: to be removed once we switch over to newer render() method handling both audio output and (optional) input.
- virtual void render(const WebVector<float*>& audioData, size_t numberOfFrames) = 0;
-
protected:
virtual ~RenderCallback() { }
};