Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / platform / audio / AudioSourceProviderClient.h
index c658d94..68029f4 100644 (file)
 
 #include "platform/heap/Handle.h"
 
-namespace WebCore {
+namespace blink {
 
 class AudioSourceProviderClient : public WillBeGarbageCollectedMixin {
 public:
     virtual void setFormat(size_t numberOfChannels, float sampleRate) = 0;
+    // Oilpan: Callers should keep this object alive during lock() and unlock().
     virtual void lock() { }
     virtual void unlock() { }
     virtual void trace(Visitor*) { }
@@ -39,6 +40,6 @@ protected:
     virtual ~AudioSourceProviderClient() { }
 };
 
-} // WebCore
+} // namespace blink
 
 #endif // AudioSourceProviderClient_h