Chromium Code Reviews| OLD | NEW |
|---|---|
| 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" |
| 11 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
| 12 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
| 13 #include "base/synchronization/waitable_event.h" | 13 #include "base/synchronization/waitable_event.h" |
| 14 #include "content/child/thread_safe_sender.h" | 14 #include "content/child/thread_safe_sender.h" |
| 15 #include "content/common/content_export.h" | 15 #include "content/common/content_export.h" |
| 16 #include "content/common/gpu/client/gl_helper.h" | |
|
oetuaho-nv
2014/08/11 14:56:41
It seems it would be enough to declare GLHelper he
| |
| 16 #include "media/filters/gpu_video_accelerator_factories.h" | 17 #include "media/filters/gpu_video_accelerator_factories.h" |
| 17 #include "ui/gfx/size.h" | 18 #include "ui/gfx/size.h" |
| 18 | 19 |
| 19 namespace base { | 20 namespace base { |
| 20 class WaitableEvent; | 21 class WaitableEvent; |
| 21 } | 22 } |
| 22 | 23 |
| 23 namespace content { | 24 namespace content { |
| 24 class ContextProviderCommandBuffer; | 25 class ContextProviderCommandBuffer; |
| 25 class GpuChannelHost; | 26 class GpuChannelHost; |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 71 const scoped_refptr<ContextProviderCommandBuffer>& context_provider); | 72 const scoped_refptr<ContextProviderCommandBuffer>& context_provider); |
| 72 virtual ~RendererGpuVideoAcceleratorFactories(); | 73 virtual ~RendererGpuVideoAcceleratorFactories(); |
| 73 | 74 |
| 74 // Helper to bind |context_provider| to the |task_runner_| thread after | 75 // Helper to bind |context_provider| to the |task_runner_| thread after |
| 75 // construction. | 76 // construction. |
| 76 void BindContext(); | 77 void BindContext(); |
| 77 | 78 |
| 78 // Helper to get a pointer to the WebGraphicsContext3DCommandBufferImpl, | 79 // Helper to get a pointer to the WebGraphicsContext3DCommandBufferImpl, |
| 79 // if it has not been lost yet. | 80 // if it has not been lost yet. |
| 80 WebGraphicsContext3DCommandBufferImpl* GetContext3d(); | 81 WebGraphicsContext3DCommandBufferImpl* GetContext3d(); |
| 82 GLHelper* GetGLHelper(); | |
| 81 | 83 |
| 82 scoped_refptr<base::SingleThreadTaskRunner> task_runner_; | 84 scoped_refptr<base::SingleThreadTaskRunner> task_runner_; |
| 83 scoped_refptr<GpuChannelHost> gpu_channel_host_; | 85 scoped_refptr<GpuChannelHost> gpu_channel_host_; |
| 84 scoped_refptr<ContextProviderCommandBuffer> context_provider_; | 86 scoped_refptr<ContextProviderCommandBuffer> context_provider_; |
| 87 scoped_ptr<GLHelper> gl_helper_; | |
| 85 | 88 |
| 86 // For sending requests to allocate shared memory in the Browser process. | 89 // For sending requests to allocate shared memory in the Browser process. |
| 87 scoped_refptr<ThreadSafeSender> thread_safe_sender_; | 90 scoped_refptr<ThreadSafeSender> thread_safe_sender_; |
| 88 | 91 |
| 89 DISALLOW_COPY_AND_ASSIGN(RendererGpuVideoAcceleratorFactories); | 92 DISALLOW_COPY_AND_ASSIGN(RendererGpuVideoAcceleratorFactories); |
| 90 }; | 93 }; |
| 91 | 94 |
| 92 } // namespace content | 95 } // namespace content |
| 93 | 96 |
| 94 #endif // CONTENT_RENDERER_MEDIA_RENDERER_GPU_VIDEO_ACCELERATOR_FACTORIES_H_ | 97 #endif // CONTENT_RENDERER_MEDIA_RENDERER_GPU_VIDEO_ACCELERATOR_FACTORIES_H_ |
| OLD | NEW |