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

Side by Side 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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_RENDERER_MEDIA_RENDERER_GPU_VIDEO_ACCELERATOR_FACTORIES_H_ 5 #ifndef CONTENT_RENDERER_MEDIA_RENDERER_GPU_VIDEO_ACCELERATOR_FACTORIES_H_
6 #define CONTENT_RENDERER_MEDIA_RENDERER_GPU_VIDEO_ACCELERATOR_FACTORIES_H_ 6 #define CONTENT_RENDERER_MEDIA_RENDERER_GPU_VIDEO_ACCELERATOR_FACTORIES_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 28 matching lines...) Expand all
39 public: 39 public:
40 // Takes a ref on |gpu_channel_host| and tests |context| for loss before each 40 // Takes a ref on |gpu_channel_host| and tests |context| for loss before each
41 // use. Safe to call from any thread. 41 // use. Safe to call from any thread.
42 static scoped_refptr<RendererGpuVideoAcceleratorFactories> Create( 42 static scoped_refptr<RendererGpuVideoAcceleratorFactories> Create(
43 GpuChannelHost* gpu_channel_host, 43 GpuChannelHost* gpu_channel_host,
44 const scoped_refptr<base::SingleThreadTaskRunner>& task_runner, 44 const scoped_refptr<base::SingleThreadTaskRunner>& task_runner,
45 const scoped_refptr<ContextProviderCommandBuffer>& context_provider); 45 const scoped_refptr<ContextProviderCommandBuffer>& context_provider);
46 46
47 // media::GpuVideoAcceleratorFactories implementation. 47 // media::GpuVideoAcceleratorFactories implementation.
48 virtual scoped_ptr<media::VideoDecodeAccelerator> 48 virtual scoped_ptr<media::VideoDecodeAccelerator>
49 CreateVideoDecodeAccelerator() OVERRIDE; 49 CreateVideoDecodeAccelerator() override;
50 virtual scoped_ptr<media::VideoEncodeAccelerator> 50 virtual scoped_ptr<media::VideoEncodeAccelerator>
51 CreateVideoEncodeAccelerator() OVERRIDE; 51 CreateVideoEncodeAccelerator() override;
52 // Creates textures and produces them into mailboxes. Returns true on success 52 // Creates textures and produces them into mailboxes. Returns true on success
53 // or false on failure. 53 // or false on failure.
54 virtual bool CreateTextures(int32 count, 54 virtual bool CreateTextures(int32 count,
55 const gfx::Size& size, 55 const gfx::Size& size,
56 std::vector<uint32>* texture_ids, 56 std::vector<uint32>* texture_ids,
57 std::vector<gpu::Mailbox>* texture_mailboxes, 57 std::vector<gpu::Mailbox>* texture_mailboxes,
58 uint32 texture_target) OVERRIDE; 58 uint32 texture_target) override;
59 virtual void DeleteTexture(uint32 texture_id) OVERRIDE; 59 virtual void DeleteTexture(uint32 texture_id) override;
60 virtual void WaitSyncPoint(uint32 sync_point) OVERRIDE; 60 virtual void WaitSyncPoint(uint32 sync_point) override;
61 virtual void ReadPixels(uint32 texture_id, 61 virtual void ReadPixels(uint32 texture_id,
62 const gfx::Rect& visible_rect, 62 const gfx::Rect& visible_rect,
63 const SkBitmap& pixels) OVERRIDE; 63 const SkBitmap& pixels) override;
64 virtual base::SharedMemory* CreateSharedMemory(size_t size) OVERRIDE; 64 virtual base::SharedMemory* CreateSharedMemory(size_t size) override;
65 virtual scoped_refptr<base::SingleThreadTaskRunner> GetTaskRunner() OVERRIDE; 65 virtual scoped_refptr<base::SingleThreadTaskRunner> GetTaskRunner() override;
66 virtual std::vector<media::VideoEncodeAccelerator::SupportedProfile> 66 virtual std::vector<media::VideoEncodeAccelerator::SupportedProfile>
67 GetVideoEncodeAcceleratorSupportedProfiles() OVERRIDE; 67 GetVideoEncodeAcceleratorSupportedProfiles() override;
68 68
69 private: 69 private:
70 friend class base::RefCountedThreadSafe<RendererGpuVideoAcceleratorFactories>; 70 friend class base::RefCountedThreadSafe<RendererGpuVideoAcceleratorFactories>;
71 RendererGpuVideoAcceleratorFactories( 71 RendererGpuVideoAcceleratorFactories(
72 GpuChannelHost* gpu_channel_host, 72 GpuChannelHost* gpu_channel_host,
73 const scoped_refptr<base::SingleThreadTaskRunner>& task_runner, 73 const scoped_refptr<base::SingleThreadTaskRunner>& task_runner,
74 const scoped_refptr<ContextProviderCommandBuffer>& context_provider); 74 const scoped_refptr<ContextProviderCommandBuffer>& context_provider);
75 virtual ~RendererGpuVideoAcceleratorFactories(); 75 virtual ~RendererGpuVideoAcceleratorFactories();
76 76
77 // Helper to bind |context_provider| to the |task_runner_| thread after 77 // Helper to bind |context_provider| to the |task_runner_| thread after
(...skipping 12 matching lines...) Expand all
90 90
91 // For sending requests to allocate shared memory in the Browser process. 91 // For sending requests to allocate shared memory in the Browser process.
92 scoped_refptr<ThreadSafeSender> thread_safe_sender_; 92 scoped_refptr<ThreadSafeSender> thread_safe_sender_;
93 93
94 DISALLOW_COPY_AND_ASSIGN(RendererGpuVideoAcceleratorFactories); 94 DISALLOW_COPY_AND_ASSIGN(RendererGpuVideoAcceleratorFactories);
95 }; 95 };
96 96
97 } // namespace content 97 } // namespace content
98 98
99 #endif // CONTENT_RENDERER_MEDIA_RENDERER_GPU_VIDEO_ACCELERATOR_FACTORIES_H_ 99 #endif // CONTENT_RENDERER_MEDIA_RENDERER_GPU_VIDEO_ACCELERATOR_FACTORIES_H_
OLDNEW
« 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