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

Unified Diff: media/audio/audio_input_ipc.h

Issue 11166002: Plumb render view ID from audio-related code in renderer through IPCs to AudioRendererHost in brows… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased. Created 8 years, 2 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_input_ipc.h
diff --git a/media/audio/audio_input_ipc.h b/media/audio/audio_input_ipc.h
index eb4e72dfae0b31145e1fbd869b7553f92f97a23f..59155699471493d2c5a9c5386e4177ecae9b10e3 100644
--- a/media/audio/audio_input_ipc.h
+++ b/media/audio/audio_input_ipc.h
@@ -62,6 +62,8 @@ class MEDIA_EXPORT AudioInputIPCDelegate {
// process.
class MEDIA_EXPORT AudioInputIPC {
public:
+ virtual ~AudioInputIPC();
+
// Registers an AudioInputIPCDelegate and returns a |stream_id| that
// must be used with all other IPC functions in this interface.
virtual int AddDelegate(AudioInputIPCDelegate* delegate) = 0;
@@ -94,9 +96,6 @@ class MEDIA_EXPORT AudioInputIPC {
// instance. Prior to deleting the AudioInputController object, a call to
// AudioInputController::Close must be made.
virtual void CloseStream(int stream_id) = 0;
-
- protected:
- virtual ~AudioInputIPC();
};
} // namespace media

Powered by Google App Engine
This is Rietveld 408576698