1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CONTENT_BROWSER_ANDROID_IN_PROCESS_SYNCHRONOUS_COMPOSITOR_FACTORY_IMPL_H_
6 #define CONTENT_BROWSER_ANDROID_IN_PROCESS_SYNCHRONOUS_COMPOSITOR_FACTORY_IMPL_H_
8 #include "base/synchronization/lock.h"
9 #include "content/browser/android/in_process/synchronous_input_event_filter.h"
10 #include "content/renderer/android/synchronous_compositor_factory.h"
11 #include "content/renderer/media/android/stream_texture_factory_synchronous_impl.h"
12 #include "gpu/command_buffer/service/in_process_command_buffer.h"
13 #include "webkit/common/gpu/context_provider_web_context.h"
16 class GLInProcessContext
;
21 class WebGraphicsContext3DInProcessCommandBufferImpl
;
27 class SynchronousCompositorFactoryImpl
: public SynchronousCompositorFactory
{
29 SynchronousCompositorFactoryImpl();
30 virtual ~SynchronousCompositorFactoryImpl();
32 // SynchronousCompositorFactory
33 virtual scoped_refptr
<base::MessageLoopProxy
> GetCompositorMessageLoop()
35 virtual bool RecordFullLayer() OVERRIDE
;
36 virtual scoped_ptr
<cc::OutputSurface
> CreateOutputSurface(
38 scoped_refptr
<content::FrameSwapMessageQueue
> frame_swap_message_queue
)
40 virtual InputHandlerManagerClient
* GetInputHandlerManagerClient() OVERRIDE
;
41 virtual scoped_refptr
<webkit::gpu::ContextProviderWebContext
>
42 CreateOffscreenContextProvider(
43 const blink::WebGraphicsContext3D::Attributes
& attributes
,
44 const std::string
& debug_name
) OVERRIDE
;
45 virtual scoped_refptr
<StreamTextureFactory
> CreateStreamTextureFactory(
46 int view_id
) OVERRIDE
;
47 virtual blink::WebGraphicsContext3D
* CreateOffscreenGraphicsContext3D(
48 const blink::WebGraphicsContext3D::Attributes
& attributes
) OVERRIDE
;
51 SynchronousInputEventFilter
* synchronous_input_event_filter() {
52 return &synchronous_input_event_filter_
;
55 void SetDeferredGpuService(
56 scoped_refptr
<gpu::InProcessCommandBuffer::Service
> service
);
57 void SetRecordFullDocument(bool record_full_document
);
58 void CompositorInitializedHardwareDraw();
59 void CompositorReleasedHardwareDraw();
61 scoped_refptr
<cc::ContextProvider
>
62 CreateOnscreenContextProviderForCompositorThread();
63 gpu::GLInProcessContext
* GetShareContext();
66 bool CanCreateMainThreadContext();
67 scoped_refptr
<StreamTextureFactorySynchronousImpl::ContextProvider
>
68 TryCreateStreamTextureFactory();
70 SynchronousInputEventFilter synchronous_input_event_filter_
;
72 scoped_refptr
<gpu::InProcessCommandBuffer::Service
> service_
;
73 scoped_ptr
<gpu::GLInProcessContext
> share_context_
;
74 scoped_refptr
<StreamTextureFactorySynchronousImpl::ContextProvider
>
75 video_context_provider_
;
77 bool record_full_layer_
;
79 // |num_hardware_compositor_lock_| is updated on UI thread only but can be
80 // read on renderer main thread.
81 base::Lock num_hardware_compositor_lock_
;
82 unsigned int num_hardware_compositors_
;
85 } // namespace content
87 #endif // CONTENT_BROWSER_ANDROID_IN_PROCESS_SYNCHRONOUS_COMPOSITOR_FACTORY_IMPL_H_