| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_GPU_RENDERER_COMPOSITOR_FRAME_SINK_H_ | 5 #ifndef CONTENT_RENDERER_GPU_RENDERER_COMPOSITOR_FRAME_SINK_H_ |
| 6 #define CONTENT_RENDERER_GPU_RENDERER_COMPOSITOR_FRAME_SINK_H_ | 6 #define CONTENT_RENDERER_GPU_RENDERER_COMPOSITOR_FRAME_SINK_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 | 96 |
| 97 scoped_refptr<CompositorForwardingMessageFilter> | 97 scoped_refptr<CompositorForwardingMessageFilter> |
| 98 compositor_frame_sink_filter_; | 98 compositor_frame_sink_filter_; |
| 99 CompositorForwardingMessageFilter::Handler | 99 CompositorForwardingMessageFilter::Handler |
| 100 compositor_frame_sink_filter_handler_; | 100 compositor_frame_sink_filter_handler_; |
| 101 scoped_refptr<RendererCompositorFrameSinkProxy> compositor_frame_sink_proxy_; | 101 scoped_refptr<RendererCompositorFrameSinkProxy> compositor_frame_sink_proxy_; |
| 102 scoped_refptr<IPC::SyncMessageFilter> message_sender_; | 102 scoped_refptr<IPC::SyncMessageFilter> message_sender_; |
| 103 scoped_refptr<FrameSwapMessageQueue> frame_swap_message_queue_; | 103 scoped_refptr<FrameSwapMessageQueue> frame_swap_message_queue_; |
| 104 std::unique_ptr<cc::BeginFrameSource> begin_frame_source_; | 104 std::unique_ptr<cc::BeginFrameSource> begin_frame_source_; |
| 105 int routing_id_; | 105 int routing_id_; |
| 106 base::ThreadChecker thread_checker_; |
| 106 }; | 107 }; |
| 107 | 108 |
| 108 } // namespace content | 109 } // namespace content |
| 109 | 110 |
| 110 #endif // CONTENT_RENDERER_GPU_RENDERER_COMPOSITOR_FRAME_SINK_H_ | 111 #endif // CONTENT_RENDERER_GPU_RENDERER_COMPOSITOR_FRAME_SINK_H_ |
| OLD | NEW |