| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_MUS_RENDER_WIDGET_MUS_CONNECTION_H_ | 5 #ifndef CONTENT_RENDERER_MUS_RENDER_WIDGET_MUS_CONNECTION_H_ |
| 6 #define CONTENT_RENDERER_MUS_RENDER_WIDGET_MUS_CONNECTION_H_ | 6 #define CONTENT_RENDERER_MUS_RENDER_WIDGET_MUS_CONNECTION_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "base/threading/thread_checker.h" | 9 #include "base/threading/thread_checker.h" |
| 10 #include "cc/output/compositor_frame_sink.h" | 10 #include "cc/output/compositor_frame_sink.h" |
| 11 #include "content/common/content_export.h" | 11 #include "content/common/content_export.h" |
| 12 #include "content/renderer/input/render_widget_input_handler_delegate.h" | 12 #include "content/renderer/input/render_widget_input_handler_delegate.h" |
| 13 #include "content/renderer/mus/compositor_mus_connection.h" | 13 #include "content/renderer/mus/compositor_mus_connection.h" |
| 14 | 14 |
| 15 namespace gpu { | 15 namespace gpu { |
| 16 class GpuChannelHost; | 16 class GpuChannelHost; |
| 17 class GpuMemoryBufferManager; | 17 class GpuMemoryBufferManager; |
| 18 } | 18 } |
| 19 | 19 |
| 20 namespace content { | 20 namespace content { |
| 21 | 21 |
| 22 class InputHandlerManager; | |
| 23 | |
| 24 // Use on main thread. | 22 // Use on main thread. |
| 25 class CONTENT_EXPORT RenderWidgetMusConnection | 23 class CONTENT_EXPORT RenderWidgetMusConnection |
| 26 : public RenderWidgetInputHandlerDelegate { | 24 : public RenderWidgetInputHandlerDelegate { |
| 27 public: | 25 public: |
| 28 // Bind to a WindowTreeClient request. | 26 // Bind to a WindowTreeClient request. |
| 29 void Bind(mojo::InterfaceRequest<ui::mojom::WindowTreeClient> request); | 27 void Bind(mojo::InterfaceRequest<ui::mojom::WindowTreeClient> request); |
| 30 | 28 |
| 31 // Create a cc output surface. | 29 // Create a cc output surface. |
| 32 std::unique_ptr<cc::CompositorFrameSink> CreateCompositorFrameSink( | 30 std::unique_ptr<cc::CompositorFrameSink> CreateCompositorFrameSink( |
| 33 scoped_refptr<gpu::GpuChannelHost> gpu_channel_host, | 31 scoped_refptr<gpu::GpuChannelHost> gpu_channel_host, |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 | 76 |
| 79 // Used to verify single threaded access. | 77 // Used to verify single threaded access. |
| 80 base::ThreadChecker thread_checker_; | 78 base::ThreadChecker thread_checker_; |
| 81 | 79 |
| 82 DISALLOW_COPY_AND_ASSIGN(RenderWidgetMusConnection); | 80 DISALLOW_COPY_AND_ASSIGN(RenderWidgetMusConnection); |
| 83 }; | 81 }; |
| 84 | 82 |
| 85 } // namespace content | 83 } // namespace content |
| 86 | 84 |
| 87 #endif // CONTENT_RENDERER_MUS_RENDER_WIDGET_MUS_CONNECTION_H_ | 85 #endif // CONTENT_RENDERER_MUS_RENDER_WIDGET_MUS_CONNECTION_H_ |
| OLD | NEW |