| Index: content/browser/renderer_host/media/media_stream_dispatcher_host.h
|
| diff --git a/content/browser/renderer_host/media/media_stream_dispatcher_host.h b/content/browser/renderer_host/media/media_stream_dispatcher_host.h
|
| index cc315ed27788b7d63e93c11bc3da1b610d214544..b57ea588de9a925a9774f5dafee32ec088c32dda 100644
|
| --- a/content/browser/renderer_host/media/media_stream_dispatcher_host.h
|
| +++ b/content/browser/renderer_host/media/media_stream_dispatcher_host.h
|
| @@ -33,18 +33,19 @@ class CONTENT_EXPORT MediaStreamDispatcherHost
|
| virtual ~MediaStreamDispatcherHost();
|
|
|
| // MediaStreamRequester implementation.
|
| - virtual void StreamGenerated(const std::string& label,
|
| - const StreamDeviceInfoArray& audio_devices,
|
| - const StreamDeviceInfoArray& video_devices);
|
| + virtual void StreamGenerated(
|
| + const std::string& label,
|
| + const StreamDeviceInfoArray& audio_devices,
|
| + const StreamDeviceInfoArray& video_devices) OVERRIDE;
|
|
|
| - virtual void StreamGenerationFailed(const std::string& label);
|
| - virtual void AudioDeviceFailed(const std::string& label, int index);
|
| - virtual void VideoDeviceFailed(const std::string& label, int index);
|
| + virtual void StreamGenerationFailed(const std::string& label) OVERRIDE;
|
| + virtual void AudioDeviceFailed(const std::string& label, int index) OVERRIDE;
|
| + virtual void VideoDeviceFailed(const std::string& label, int index) OVERRIDE;
|
|
|
| // BrowserMessageFilter implementation.
|
| virtual bool OnMessageReceived(const IPC::Message& message,
|
| - bool* message_was_ok);
|
| - virtual void OnChannelClosing();
|
| + bool* message_was_ok) OVERRIDE;
|
| + virtual void OnChannelClosing() OVERRIDE;
|
|
|
| private:
|
| friend class MockMediaStreamDispatcherHost;
|
|
|