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

Unified Diff: media/audio/audio_output_ipc.h

Issue 10836025: Part 1: Plumb render view ID to render host (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: address review comments Created 8 years, 5 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
Index: media/audio/audio_output_ipc.h
diff --git a/media/audio/audio_output_ipc.h b/media/audio/audio_output_ipc.h
index 7f9df3bf949093d9ee80b01982d57340f3a0a0ca..47f061082075070114fe86ac565f59daa2a4b252 100644
--- a/media/audio/audio_output_ipc.h
+++ b/media/audio/audio_output_ipc.h
@@ -57,6 +57,8 @@ class MEDIA_EXPORT AudioOutputIPCDelegate {
// process.
class MEDIA_EXPORT AudioOutputIPC {
public:
+ virtual ~AudioOutputIPC();
+
// Registers an AudioOutputIPCDelegate and returns a |stream_id| that must
// be used with all other IPC functions in this interface.
virtual int AddDelegate(AudioOutputIPCDelegate* delegate) = 0;
@@ -93,9 +95,6 @@ class MEDIA_EXPORT AudioOutputIPC {
// Sets the volume of the audio stream.
virtual void SetVolume(int stream_id, double volume) = 0;
-
- protected:
- virtual ~AudioOutputIPC();
};
} // namespace media

Powered by Google App Engine
This is Rietveld 408576698