From 85afb18670111009609555f8950c0de79242a409 Mon Sep 17 00:00:00 2001 From: Karthick M Date: Wed, 30 Mar 2016 18:07:37 +0530 Subject: [PATCH] fixup! [MM] Webaudio with CAPI port. Chromium upstream removed audio_decoder_android.h [1], which is however needed in audio_decoder_efl.h. This CL addresses build issue due to the missing header file. [1] https://codereview.chromium.org/1565623002 Bug: http://suprem.sec.samsung.net/jira/browse/TWF-610 Reviewed by: k2.nagaraju, msu.koo, sm.venugopal, sns.park Change-Id: I916e7589f1dccec08b0590a9ff12b70c7c209dae Signed-off-by: Karthick M --- .../content/renderer/media/efl/audio_decoder_efl.h | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/tizen_src/chromium_impl/content/renderer/media/efl/audio_decoder_efl.h b/tizen_src/chromium_impl/content/renderer/media/efl/audio_decoder_efl.h index e51a5bc..c21305f 100644 --- a/tizen_src/chromium_impl/content/renderer/media/efl/audio_decoder_efl.h +++ b/tizen_src/chromium_impl/content/renderer/media/efl/audio_decoder_efl.h @@ -5,6 +5,18 @@ #ifndef CONTENT_RENDERER_MEDIA_EFL_AUDIO_DECODER_EFL_H_ #define CONTENT_RENDERER_MEDIA_EFL_AUDIO_DECODER_EFL_H_ -#include "content/renderer/media/android/audio_decoder_android.h" +#include "content/child/thread_safe_sender.h" +namespace blink { +class WebAudioBus; +} + +namespace content { + +bool DecodeAudioFileData(blink::WebAudioBus* destination_bus, + const char* data, + size_t data_size, + scoped_refptr sender); + +} // namespace content #endif // CONTENT_RENDERER_MEDIA_EFL_AUDIO_DECODER_EFL_H_ -- 2.7.4