Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / modules / webaudio / AsyncAudioDecoder.cpp
index db7ceda..fc678cb 100644 (file)
 #include "wtf/MainThread.h"
 #include "wtf/PassOwnPtr.h"
 
-namespace WebCore {
+namespace blink {
 
 AsyncAudioDecoder::AsyncAudioDecoder()
-    : m_thread(adoptPtr(blink::Platform::current()->createThread("Audio Decoder")))
+    : m_thread(adoptPtr(Platform::current()->createThread("Audio Decoder")))
 {
 }
 
@@ -87,6 +87,6 @@ void AsyncAudioDecoder::notifyComplete(ArrayBuffer* audioData, AudioBufferCallba
         errorCallback->handleEvent(audioBuffer.get());
 }
 
-} // namespace WebCore
+} // namespace blink
 
 #endif // ENABLE(WEB_AUDIO)