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

Unified Diff: content/common/gpu/media/v4l2_video_encode_accelerator.h

Issue 906413003: Update {virtual,override} to follow C++11 style in content/common/gpu/media (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix indentation Created 5 years, 10 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
« no previous file with comments | « content/common/gpu/media/v4l2_video_decode_accelerator.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/gpu/media/v4l2_video_encode_accelerator.h
diff --git a/content/common/gpu/media/v4l2_video_encode_accelerator.h b/content/common/gpu/media/v4l2_video_encode_accelerator.h
index 3be5a837abbbdae18fcf8e8addee88d87efdd74a..2e473444d50a5e09d2eef3ce5674ee934ab1a675 100644
--- a/content/common/gpu/media/v4l2_video_encode_accelerator.h
+++ b/content/common/gpu/media/v4l2_video_encode_accelerator.h
@@ -43,23 +43,23 @@ class CONTENT_EXPORT V4L2VideoEncodeAccelerator
: public media::VideoEncodeAccelerator {
public:
explicit V4L2VideoEncodeAccelerator(const scoped_refptr<V4L2Device>& device);
- virtual ~V4L2VideoEncodeAccelerator();
+ ~V4L2VideoEncodeAccelerator() override;
// media::VideoEncodeAccelerator implementation.
- virtual std::vector<media::VideoEncodeAccelerator::SupportedProfile>
+ std::vector<media::VideoEncodeAccelerator::SupportedProfile>
GetSupportedProfiles() override;
- virtual bool Initialize(media::VideoFrame::Format format,
- const gfx::Size& input_visible_size,
- media::VideoCodecProfile output_profile,
- uint32 initial_bitrate,
- Client* client) override;
- virtual void Encode(const scoped_refptr<media::VideoFrame>& frame,
- bool force_keyframe) override;
- virtual void UseOutputBitstreamBuffer(const media::BitstreamBuffer& buffer)
+ bool Initialize(media::VideoFrame::Format format,
+ const gfx::Size& input_visible_size,
+ media::VideoCodecProfile output_profile,
+ uint32 initial_bitrate,
+ Client* client) override;
+ void Encode(const scoped_refptr<media::VideoFrame>& frame,
+ bool force_keyframe) override;
+ void UseOutputBitstreamBuffer(const media::BitstreamBuffer& buffer)
override;
- virtual void RequestEncodingParametersChange(uint32 bitrate,
- uint32 framerate) override;
- virtual void Destroy() override;
+ void RequestEncodingParametersChange(uint32 bitrate,
+ uint32 framerate) override;
+ void Destroy() override;
private:
// Auto-destroy reference for BitstreamBuffer, for tracking buffers passed to
« no previous file with comments | « content/common/gpu/media/v4l2_video_decode_accelerator.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698