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

Unified Diff: content/renderer/media/webrtc/video_destination_handler.h

Issue 633303002: Replace FINAL and OVERRIDE with their C++11 counterparts in content/renderer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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: content/renderer/media/webrtc/video_destination_handler.h
diff --git a/content/renderer/media/webrtc/video_destination_handler.h b/content/renderer/media/webrtc/video_destination_handler.h
index 7981401284f223a8f652b5b9b733d8120ee8fe2e..0a9ab85445c57194b10f6f6bc35d2ae44b8aa7c4 100644
--- a/content/renderer/media/webrtc/video_destination_handler.h
+++ b/content/renderer/media/webrtc/video_destination_handler.h
@@ -46,18 +46,18 @@ class CONTENT_EXPORT PpFrameWriter
// FrameWriterInterface implementation.
// This method will be called by the Pepper host from render thread.
virtual void PutFrame(PPB_ImageData_Impl* image_data,
- int64 time_stamp_ns) OVERRIDE;
+ int64 time_stamp_ns) override;
protected:
// MediaStreamVideoSource implementation.
virtual void GetCurrentSupportedFormats(
int max_requested_width,
int max_requested_height,
double max_requested_frame_rate,
- const VideoCaptureDeviceFormatsCB& callback) OVERRIDE;
+ const VideoCaptureDeviceFormatsCB& callback) override;
virtual void StartSourceImpl(
const media::VideoCaptureFormat& format,
- const VideoCaptureDeliverFrameCB& frame_callback) OVERRIDE;
- virtual void StopSourceImpl() OVERRIDE;
+ const VideoCaptureDeliverFrameCB& frame_callback) override;
+ virtual void StopSourceImpl() override;
private:
media::VideoFramePool frame_pool_;

Powered by Google App Engine
This is Rietveld 408576698