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_BROWSER_ANDROID_IN_PROCESS_SYNCHRONOUS_COMPOSITOR_OUTPUT_SURFACE
_H_ | 5 #ifndef CONTENT_BROWSER_ANDROID_IN_PROCESS_SYNCHRONOUS_COMPOSITOR_OUTPUT_SURFACE
_H_ |
6 #define CONTENT_BROWSER_ANDROID_IN_PROCESS_SYNCHRONOUS_COMPOSITOR_OUTPUT_SURFACE
_H_ | 6 #define CONTENT_BROWSER_ANDROID_IN_PROCESS_SYNCHRONOUS_COMPOSITOR_OUTPUT_SURFACE
_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 const scoped_refptr<cc::ContextProvider>& context_provider, | 51 const scoped_refptr<cc::ContextProvider>& context_provider, |
52 const scoped_refptr<cc::ContextProvider>& worker_context_provider, | 52 const scoped_refptr<cc::ContextProvider>& worker_context_provider, |
53 int routing_id, | 53 int routing_id, |
54 scoped_refptr<FrameSwapMessageQueue> frame_swap_message_queue); | 54 scoped_refptr<FrameSwapMessageQueue> frame_swap_message_queue); |
55 ~SynchronousCompositorOutputSurface() override; | 55 ~SynchronousCompositorOutputSurface() override; |
56 | 56 |
57 void SetCompositor(SynchronousCompositorImpl* compositor); | 57 void SetCompositor(SynchronousCompositorImpl* compositor); |
58 | 58 |
59 // OutputSurface. | 59 // OutputSurface. |
60 bool BindToClient(cc::OutputSurfaceClient* surface_client) override; | 60 bool BindToClient(cc::OutputSurfaceClient* surface_client) override; |
| 61 void DetachFromClient() override; |
61 void Reshape(const gfx::Size& size, float scale_factor) override; | 62 void Reshape(const gfx::Size& size, float scale_factor) override; |
62 void SwapBuffers(cc::CompositorFrame* frame) override; | 63 void SwapBuffers(cc::CompositorFrame* frame) override; |
63 void Invalidate() override; | 64 void Invalidate() override; |
64 | 65 |
65 // Partial SynchronousCompositor API implementation. | 66 // Partial SynchronousCompositor API implementation. |
66 scoped_ptr<cc::CompositorFrame> DemandDrawHw( | 67 scoped_ptr<cc::CompositorFrame> DemandDrawHw( |
67 gfx::Size surface_size, | 68 gfx::Size surface_size, |
68 const gfx::Transform& transform, | 69 const gfx::Transform& transform, |
69 gfx::Rect viewport, | 70 gfx::Rect viewport, |
70 gfx::Rect clip, | 71 gfx::Rect clip, |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 scoped_ptr<cc::CompositorFrame> frame_holder_; | 113 scoped_ptr<cc::CompositorFrame> frame_holder_; |
113 | 114 |
114 scoped_refptr<FrameSwapMessageQueue> frame_swap_message_queue_; | 115 scoped_refptr<FrameSwapMessageQueue> frame_swap_message_queue_; |
115 | 116 |
116 DISALLOW_COPY_AND_ASSIGN(SynchronousCompositorOutputSurface); | 117 DISALLOW_COPY_AND_ASSIGN(SynchronousCompositorOutputSurface); |
117 }; | 118 }; |
118 | 119 |
119 } // namespace content | 120 } // namespace content |
120 | 121 |
121 #endif // CONTENT_BROWSER_ANDROID_IN_PROCESS_SYNCHRONOUS_COMPOSITOR_OUTPUT_SURF
ACE_H_ | 122 #endif // CONTENT_BROWSER_ANDROID_IN_PROCESS_SYNCHRONOUS_COMPOSITOR_OUTPUT_SURF
ACE_H_ |
OLD | NEW |