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

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

Issue 630853003: Replace OVERRIDE and FINAL with override and final in content/common/[a-s]* (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/common/gpu/media/exynos_v4l2_video_device.h
diff --git a/content/common/gpu/media/exynos_v4l2_video_device.h b/content/common/gpu/media/exynos_v4l2_video_device.h
index 3745cbef7f7b44c38f87bd6f35a7cdfc52083eb9..d1498a66e1859f94bb780c089c673263553a71b9 100644
--- a/content/common/gpu/media/exynos_v4l2_video_device.h
+++ b/content/common/gpu/media/exynos_v4l2_video_device.h
@@ -18,28 +18,28 @@ class ExynosV4L2Device : public V4L2Device {
virtual ~ExynosV4L2Device();
// V4L2Device implementation.
- virtual int Ioctl(int request, void* arg) OVERRIDE;
- virtual bool Poll(bool poll_device, bool* event_pending) OVERRIDE;
- virtual bool SetDevicePollInterrupt() OVERRIDE;
- virtual bool ClearDevicePollInterrupt() OVERRIDE;
+ virtual int Ioctl(int request, void* arg) override;
+ virtual bool Poll(bool poll_device, bool* event_pending) override;
+ virtual bool SetDevicePollInterrupt() override;
+ virtual bool ClearDevicePollInterrupt() override;
virtual void* Mmap(void* addr,
unsigned int len,
int prot,
int flags,
- unsigned int offset) OVERRIDE;
- virtual void Munmap(void* addr, unsigned int len) OVERRIDE;
- virtual bool Initialize() OVERRIDE;
+ unsigned int offset) override;
+ virtual void Munmap(void* addr, unsigned int len) override;
+ virtual bool Initialize() override;
virtual EGLImageKHR CreateEGLImage(EGLDisplay egl_display,
EGLContext egl_context,
GLuint texture_id,
gfx::Size frame_buffer_size,
unsigned int buffer_index,
- size_t planes_count) OVERRIDE;
+ size_t planes_count) override;
virtual EGLBoolean DestroyEGLImage(EGLDisplay egl_display,
- EGLImageKHR egl_image) OVERRIDE;
- virtual GLenum GetTextureTarget() OVERRIDE;
- virtual uint32 PreferredInputFormat() OVERRIDE;
- virtual uint32 PreferredOutputFormat() OVERRIDE;
+ EGLImageKHR egl_image) override;
+ virtual GLenum GetTextureTarget() override;
+ virtual uint32 PreferredInputFormat() override;
+ virtual uint32 PreferredOutputFormat() override;
private:
const Type type_;
« no previous file with comments | « content/common/gpu/media/dxva_video_decode_accelerator.h ('k') | content/common/gpu/media/gpu_video_decode_accelerator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698