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

Unified Diff: content/renderer/media/renderer_gpu_video_accelerator_factories.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
« no previous file with comments | « content/renderer/media/render_media_log.h ('k') | content/renderer/media/renderer_webaudiodevice_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/media/renderer_gpu_video_accelerator_factories.h
diff --git a/content/renderer/media/renderer_gpu_video_accelerator_factories.h b/content/renderer/media/renderer_gpu_video_accelerator_factories.h
index f75fedc4fe57bcdad76c85896173cacf2ae8938d..55a2a4673d3a982ac5e33d45ceb9c190e4f24616 100644
--- a/content/renderer/media/renderer_gpu_video_accelerator_factories.h
+++ b/content/renderer/media/renderer_gpu_video_accelerator_factories.h
@@ -46,25 +46,25 @@ class CONTENT_EXPORT RendererGpuVideoAcceleratorFactories
// media::GpuVideoAcceleratorFactories implementation.
virtual scoped_ptr<media::VideoDecodeAccelerator>
- CreateVideoDecodeAccelerator() OVERRIDE;
+ CreateVideoDecodeAccelerator() override;
virtual scoped_ptr<media::VideoEncodeAccelerator>
- CreateVideoEncodeAccelerator() OVERRIDE;
+ CreateVideoEncodeAccelerator() override;
// Creates textures and produces them into mailboxes. Returns true on success
// or false on failure.
virtual bool CreateTextures(int32 count,
const gfx::Size& size,
std::vector<uint32>* texture_ids,
std::vector<gpu::Mailbox>* texture_mailboxes,
- uint32 texture_target) OVERRIDE;
- virtual void DeleteTexture(uint32 texture_id) OVERRIDE;
- virtual void WaitSyncPoint(uint32 sync_point) OVERRIDE;
+ uint32 texture_target) override;
+ virtual void DeleteTexture(uint32 texture_id) override;
+ virtual void WaitSyncPoint(uint32 sync_point) override;
virtual void ReadPixels(uint32 texture_id,
const gfx::Rect& visible_rect,
- const SkBitmap& pixels) OVERRIDE;
- virtual base::SharedMemory* CreateSharedMemory(size_t size) OVERRIDE;
- virtual scoped_refptr<base::SingleThreadTaskRunner> GetTaskRunner() OVERRIDE;
+ const SkBitmap& pixels) override;
+ virtual base::SharedMemory* CreateSharedMemory(size_t size) override;
+ virtual scoped_refptr<base::SingleThreadTaskRunner> GetTaskRunner() override;
virtual std::vector<media::VideoEncodeAccelerator::SupportedProfile>
- GetVideoEncodeAcceleratorSupportedProfiles() OVERRIDE;
+ GetVideoEncodeAcceleratorSupportedProfiles() override;
private:
friend class base::RefCountedThreadSafe<RendererGpuVideoAcceleratorFactories>;
« no previous file with comments | « content/renderer/media/render_media_log.h ('k') | content/renderer/media/renderer_webaudiodevice_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698