Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(237)

Unified Diff: content/renderer/media/webrtc_local_audio_source_provider.h

Issue 63253002: Rename WebKit namespace to blink (part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/renderer/media/webrtc_local_audio_source_provider.h
diff --git a/content/renderer/media/webrtc_local_audio_source_provider.h b/content/renderer/media/webrtc_local_audio_source_provider.h
index 1d600b75565c015c8f8f87a37e36e8986d788d1e..cbb7331dbe21c5f47b4e9ed47f9df6f8e58cbce6 100644
--- a/content/renderer/media/webrtc_local_audio_source_provider.h
+++ b/content/renderer/media/webrtc_local_audio_source_provider.h
@@ -21,14 +21,14 @@ class AudioFifo;
class AudioParameters;
}
-namespace WebKit {
+namespace blink {
class WebAudioSourceProviderClient;
}
namespace content {
// WebRtcLocalAudioSourceProvider provides a bridge between classes:
-// WebRtcAudioCapturer ---> WebKit::WebAudioSourceProvider
+// WebRtcAudioCapturer ---> blink::WebAudioSourceProvider
//
// WebRtcLocalAudioSourceProvider works as a sink to the WebRtcAudiocapturer
// and store the capture data to a FIFO. When the media stream is connected to
@@ -38,7 +38,7 @@ namespace content {
// All calls are protected by a lock.
class CONTENT_EXPORT WebRtcLocalAudioSourceProvider
: NON_EXPORTED_BASE(public media::AudioConverter::InputCallback),
- NON_EXPORTED_BASE(public WebKit::WebAudioSourceProvider) {
+ NON_EXPORTED_BASE(public blink::WebAudioSourceProvider) {
public:
static const size_t kWebAudioRenderBufferSize;
@@ -61,9 +61,9 @@ class CONTENT_EXPORT WebRtcLocalAudioSourceProvider
// so it has been under the protection of |lock_|.
void GetAudioProcessingParams(int* delay_ms, int* volume, bool* key_pressed);
- // WebKit::WebAudioSourceProvider implementation.
- virtual void setClient(WebKit::WebAudioSourceProviderClient* client) OVERRIDE;
- virtual void provideInput(const WebKit::WebVector<float*>& audio_data,
+ // blink::WebAudioSourceProvider implementation.
+ virtual void setClient(blink::WebAudioSourceProviderClient* client) OVERRIDE;
+ virtual void provideInput(const blink::WebVector<float*>& audio_data,
size_t number_of_frames) OVERRIDE;
// media::AudioConverter::Inputcallback implementation.
« no previous file with comments | « content/renderer/media/webrtc_audio_capturer.h ('k') | content/renderer/media/webrtc_local_audio_source_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698