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

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

Issue 823713002: Standardize usage of virtual/override/final specifiers in content/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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.cc
diff --git a/content/renderer/media/webrtc/video_destination_handler.cc b/content/renderer/media/webrtc/video_destination_handler.cc
index 4f7664584dcd80ce1c9bce40a713bc09b32bc646..75e62d0c498b36d3ca4d8c0feb1bf3bea38e6710 100644
--- a/content/renderer/media/webrtc/video_destination_handler.cc
+++ b/content/renderer/media/webrtc/video_destination_handler.cc
@@ -189,10 +189,9 @@ class PpFrameWriterProxy : public FrameWriterInterface {
DCHECK(writer_ != NULL);
}
- virtual ~PpFrameWriterProxy() {}
+ ~PpFrameWriterProxy() override {}
- virtual void PutFrame(PPB_ImageData_Impl* image_data,
- int64 time_stamp_ns) override {
+ void PutFrame(PPB_ImageData_Impl* image_data, int64 time_stamp_ns) override {
writer_->PutFrame(image_data, time_stamp_ns);
}
« no previous file with comments | « content/renderer/media/webrtc/video_destination_handler.h ('k') | content/renderer/render_view_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698