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

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

Issue 357004: SetVolume and GetVolume take one volume instead of separate left and right vo... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 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
« no previous file with comments | « chrome/renderer/audio_message_filter_unittest.cc ('k') | chrome/renderer/media/audio_renderer_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/media/audio_renderer_impl.h
===================================================================
--- chrome/renderer/media/audio_renderer_impl.h (revision 30948)
+++ chrome/renderer/media/audio_renderer_impl.h (working copy)
@@ -120,7 +120,7 @@
const base::Time& message_timestamp);
void OnStateChanged(ViewMsg_AudioStreamState state);
void OnCreated(base::SharedMemoryHandle handle, size_t length);
- void OnVolume(double left, double right);
+ void OnVolume(double volume);
// Methods called on pipeline thread ----------------------------------------
// media::MediaFilter implementation.
@@ -159,7 +159,7 @@
size_t packet_size, size_t buffer_capacity);
void OnPlay();
void OnPause();
- void OnSetVolume(double left, double right);
+ void OnSetVolume(double volume);
void OnNotifyPacketReady();
void OnDestroy();
« no previous file with comments | « chrome/renderer/audio_message_filter_unittest.cc ('k') | chrome/renderer/media/audio_renderer_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698