OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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_COMMON_GPU_CLIENT_CONTEXT_PROVIDER_COMMAND_BUFFER | 5 #ifndef CONTENT_COMMON_GPU_CLIENT_CONTEXT_PROVIDER_COMMAND_BUFFER |
6 #define CONTENT_COMMON_GPU_CLIENT_CONTEXT_PROVIDER_COMMAND_BUFFER | 6 #define CONTENT_COMMON_GPU_CLIENT_CONTEXT_PROVIDER_COMMAND_BUFFER |
7 | 7 |
8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
10 #include "base/synchronization/lock.h" | 10 #include "base/synchronization/lock.h" |
11 #include "base/threading/thread_checker.h" | 11 #include "base/threading/thread_checker.h" |
| 12 #include "cc/blink/context_provider_web_context.h" |
12 #include "cc/output/context_provider.h" | 13 #include "cc/output/context_provider.h" |
13 #include "content/common/content_export.h" | 14 #include "content/common/content_export.h" |
14 #include "content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.h" | 15 #include "content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.h" |
15 #include "webkit/common/gpu/context_provider_web_context.h" | |
16 | 16 |
17 namespace webkit { | 17 namespace webkit { |
18 namespace gpu { | 18 namespace gpu { |
19 class GrContextForWebGraphicsContext3D; | 19 class GrContextForWebGraphicsContext3D; |
20 } | 20 } |
21 } | 21 } |
22 | 22 |
23 namespace content { | 23 namespace content { |
24 | 24 |
25 // Implementation of cc::ContextProvider that provides a | 25 // Implementation of cc::ContextProvider that provides a |
26 // WebGraphicsContext3DCommandBufferImpl context and a GrContext. | 26 // WebGraphicsContext3DCommandBufferImpl context and a GrContext. |
27 class CONTENT_EXPORT ContextProviderCommandBuffer | 27 class CONTENT_EXPORT ContextProviderCommandBuffer |
28 : NON_EXPORTED_BASE(public webkit::gpu::ContextProviderWebContext) { | 28 : NON_EXPORTED_BASE(public cc_blink::ContextProviderWebContext) { |
29 public: | 29 public: |
30 static scoped_refptr<ContextProviderCommandBuffer> Create( | 30 static scoped_refptr<ContextProviderCommandBuffer> Create( |
31 scoped_ptr<WebGraphicsContext3DCommandBufferImpl> context3d, | 31 scoped_ptr<WebGraphicsContext3DCommandBufferImpl> context3d, |
32 const std::string& debug_name); | 32 const std::string& debug_name); |
33 | 33 |
34 CommandBufferProxyImpl* GetCommandBufferProxy(); | 34 CommandBufferProxyImpl* GetCommandBufferProxy(); |
35 | 35 |
36 // ContextProviderWebContext implementation. | 36 // cc_blink::ContextProviderWebContext implementation. |
37 WebGraphicsContext3DCommandBufferImpl* WebContext3D() override; | 37 WebGraphicsContext3DCommandBufferImpl* WebContext3D() override; |
38 | 38 |
39 // cc::ContextProvider implementation. | 39 // cc::ContextProvider implementation. |
40 bool BindToCurrentThread() override; | 40 bool BindToCurrentThread() override; |
41 gpu::gles2::GLES2Interface* ContextGL() override; | 41 gpu::gles2::GLES2Interface* ContextGL() override; |
42 gpu::ContextSupport* ContextSupport() override; | 42 gpu::ContextSupport* ContextSupport() override; |
43 class GrContext* GrContext() override; | 43 class GrContext* GrContext() override; |
44 Capabilities ContextCapabilities() override; | 44 Capabilities ContextCapabilities() override; |
45 bool IsContextLost() override; | 45 bool IsContextLost() override; |
46 void VerifyContexts() override; | 46 void VerifyContexts() override; |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 base::Lock main_thread_lock_; | 79 base::Lock main_thread_lock_; |
80 bool destroyed_; | 80 bool destroyed_; |
81 | 81 |
82 class LostContextCallbackProxy; | 82 class LostContextCallbackProxy; |
83 scoped_ptr<LostContextCallbackProxy> lost_context_callback_proxy_; | 83 scoped_ptr<LostContextCallbackProxy> lost_context_callback_proxy_; |
84 }; | 84 }; |
85 | 85 |
86 } // namespace content | 86 } // namespace content |
87 | 87 |
88 #endif // CONTENT_COMMON_GPU_CLIENT_CONTEXT_PROVIDER_COMMAND_BUFFER | 88 #endif // CONTENT_COMMON_GPU_CLIENT_CONTEXT_PROVIDER_COMMAND_BUFFER |
OLD | NEW |