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

Unified Diff: chrome/renderer/media/audio_renderer_impl.cc

Issue 20410: Audio related IPC messages and handlers from browser to renderer (Closed)
Patch Set: cleanup Created 11 years, 10 months 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
« no previous file with comments | « chrome/renderer/media/audio_renderer_impl.h ('k') | chrome/renderer/render_view.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/media/audio_renderer_impl.cc
diff --git a/chrome/renderer/media/audio_renderer_impl.cc b/chrome/renderer/media/audio_renderer_impl.cc
index 113d700454515e2a3040b0557560617e3bb120b2..9dbd392f70c5f6e22ff35a21cbc99ddf0b1adc01 100644
--- a/chrome/renderer/media/audio_renderer_impl.cc
+++ b/chrome/renderer/media/audio_renderer_impl.cc
@@ -32,3 +32,21 @@ bool AudioRendererImpl::IsMediaFormatSupported(
// TODO(hclam): check the format correct.
return true;
}
+
+void AudioRendererImpl::OnRequestPacket() {
+ // TODO(hclam): implement this.
+}
+
+void AudioRendererImpl::OnCreated(base::SharedMemoryHandle handle,
+ size_t length) {
+ // TODO(hclam): implement this.
+}
+
+void AudioRendererImpl::OnStateChanged(AudioOutputStream::State state,
+ int info) {
+ // TODO(hclam): implement this.
+}
+
+void AudioRendererImpl::OnVolume(double left, double right) {
+ // TODO(hclam): implement this.
+}
« no previous file with comments | « chrome/renderer/media/audio_renderer_impl.h ('k') | chrome/renderer/render_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698