| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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 COMPONENTS_DISPLAY_COMPOSITOR_GPU_ROOT_COMPOSITOR_FRAME_SINK_H_ | 5 #ifndef COMPONENTS_DISPLAY_COMPOSITOR_GPU_ROOT_COMPOSITOR_FRAME_SINK_H_ |
| 6 #define COMPONENTS_DISPLAY_COMPOSITOR_GPU_ROOT_COMPOSITOR_FRAME_SINK_H_ | 6 #define COMPONENTS_DISPLAY_COMPOSITOR_GPU_ROOT_COMPOSITOR_FRAME_SINK_H_ |
| 7 | 7 |
| 8 #include "cc/ipc/display_compositor.mojom.h" | 8 #include "cc/ipc/frame_sink_manager.mojom.h" |
| 9 #include "cc/ipc/mojo_compositor_frame_sink.mojom.h" | 9 #include "cc/ipc/mojo_compositor_frame_sink.mojom.h" |
| 10 #include "cc/surfaces/compositor_frame_sink_support_client.h" | 10 #include "cc/surfaces/compositor_frame_sink_support_client.h" |
| 11 #include "cc/surfaces/display_client.h" | 11 #include "cc/surfaces/display_client.h" |
| 12 #include "cc/surfaces/local_surface_id.h" | 12 #include "cc/surfaces/local_surface_id.h" |
| 13 #include "cc/surfaces/surface_id.h" | 13 #include "cc/surfaces/surface_id.h" |
| 14 #include "components/display_compositor/display_compositor_export.h" | 14 #include "components/display_compositor/display_compositor_export.h" |
| 15 #include "components/display_compositor/gpu_compositor_frame_sink_delegate.h" | 15 #include "components/display_compositor/gpu_compositor_frame_sink_delegate.h" |
| 16 #include "mojo/public/cpp/bindings/associated_binding.h" | 16 #include "mojo/public/cpp/bindings/associated_binding.h" |
| 17 #include "mojo/public/cpp/bindings/binding.h" | 17 #include "mojo/public/cpp/bindings/binding.h" |
| 18 | 18 |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 mojo::Binding<cc::mojom::MojoCompositorFrameSinkPrivate> | 101 mojo::Binding<cc::mojom::MojoCompositorFrameSinkPrivate> |
| 102 compositor_frame_sink_private_binding_; | 102 compositor_frame_sink_private_binding_; |
| 103 mojo::AssociatedBinding<cc::mojom::DisplayPrivate> display_private_binding_; | 103 mojo::AssociatedBinding<cc::mojom::DisplayPrivate> display_private_binding_; |
| 104 | 104 |
| 105 DISALLOW_COPY_AND_ASSIGN(GpuRootCompositorFrameSink); | 105 DISALLOW_COPY_AND_ASSIGN(GpuRootCompositorFrameSink); |
| 106 }; | 106 }; |
| 107 | 107 |
| 108 } // namespace display_compositor | 108 } // namespace display_compositor |
| 109 | 109 |
| 110 #endif // COMPONENTS_DISPLAY_COMPOSITOR_GPU_ROOT_COMPOSITOR_FRAME_SINK_H_ | 110 #endif // COMPONENTS_DISPLAY_COMPOSITOR_GPU_ROOT_COMPOSITOR_FRAME_SINK_H_ |
| OLD | NEW |