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

Unified Diff: content/renderer/media/mock_media_stream_video_source.h

Issue 1091093006: Update {virtual,override} to follow C++11 style in content. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Back out some webrtc files. Created 5 years, 8 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: content/renderer/media/mock_media_stream_video_source.h
diff --git a/content/renderer/media/mock_media_stream_video_source.h b/content/renderer/media/mock_media_stream_video_source.h
index 0ae75074e0162055ea63b2890ca09bbf86884762..d00a5feb612bb015cac9b65b94fa2194d1611f08 100644
--- a/content/renderer/media/mock_media_stream_video_source.h
+++ b/content/renderer/media/mock_media_stream_video_source.h
@@ -44,22 +44,22 @@ class MockMediaStreamVideoSource : public MediaStreamVideoSource {
int max_requested_width() const { return max_requested_width_; }
double max_requested_frame_rate() const { return max_requested_frame_rate_; }
- virtual void SetMutedState(bool muted_state) override {
+ void SetMutedState(bool muted_state) override {
MediaStreamVideoSource::SetMutedState(muted_state);
DoSetMutedState(muted_state);
}
protected:
// Implements MediaStreamVideoSource.
- virtual void GetCurrentSupportedFormats(
+ void GetCurrentSupportedFormats(
int max_requested_height,
int max_requested_width,
double max_requested_frame_rate,
const VideoCaptureDeviceFormatsCB& callback) override;
- virtual void StartSourceImpl(
+ void StartSourceImpl(
const media::VideoCaptureFormat& format,
const VideoCaptureDeliverFrameCB& frame_callback) override;
- virtual void StopSourceImpl() override;
+ void StopSourceImpl() override;
private:
media::VideoCaptureFormat format_;
« no previous file with comments | « content/renderer/media/mock_media_stream_video_sink.h ('k') | content/renderer/media/video_capture_message_filter_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698