| 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 COMPONENTS_DISPLAY_COMPOSITOR_GPU_COMPOSITOR_FRAME_SINK_H_ | 5 #ifndef COMPONENTS_DISPLAY_COMPOSITOR_GPU_COMPOSITOR_FRAME_SINK_H_ |
| 6 #define COMPONENTS_DISPLAY_COMPOSITOR_GPU_COMPOSITOR_FRAME_SINK_H_ | 6 #define COMPONENTS_DISPLAY_COMPOSITOR_GPU_COMPOSITOR_FRAME_SINK_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
| 13 #include "cc/ipc/display_compositor.mojom.h" | |
| 14 #include "cc/ipc/mojo_compositor_frame_sink.mojom.h" | 13 #include "cc/ipc/mojo_compositor_frame_sink.mojom.h" |
| 15 #include "cc/surfaces/compositor_frame_sink_support.h" | 14 #include "cc/surfaces/compositor_frame_sink_support.h" |
| 16 #include "cc/surfaces/compositor_frame_sink_support_client.h" | 15 #include "cc/surfaces/compositor_frame_sink_support_client.h" |
| 17 #include "cc/surfaces/local_surface_id.h" | 16 #include "cc/surfaces/local_surface_id.h" |
| 18 #include "cc/surfaces/surface_id.h" | 17 #include "cc/surfaces/surface_id.h" |
| 19 #include "components/display_compositor/display_compositor_export.h" | 18 #include "components/display_compositor/display_compositor_export.h" |
| 20 #include "components/display_compositor/gpu_compositor_frame_sink_delegate.h" | 19 #include "components/display_compositor/gpu_compositor_frame_sink_delegate.h" |
| 21 #include "mojo/public/cpp/bindings/binding.h" | 20 #include "mojo/public/cpp/bindings/binding.h" |
| 22 | 21 |
| 23 namespace display_compositor { | 22 namespace display_compositor { |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 compositor_frame_sink_binding_; | 71 compositor_frame_sink_binding_; |
| 73 mojo::Binding<cc::mojom::MojoCompositorFrameSinkPrivate> | 72 mojo::Binding<cc::mojom::MojoCompositorFrameSinkPrivate> |
| 74 compositor_frame_sink_private_binding_; | 73 compositor_frame_sink_private_binding_; |
| 75 | 74 |
| 76 DISALLOW_COPY_AND_ASSIGN(GpuCompositorFrameSink); | 75 DISALLOW_COPY_AND_ASSIGN(GpuCompositorFrameSink); |
| 77 }; | 76 }; |
| 78 | 77 |
| 79 } // namespace display_compositor | 78 } // namespace display_compositor |
| 80 | 79 |
| 81 #endif // COMPONENTS_DISPLAY_COMPOSITOR_GPU_COMPOSITOR_FRAME_SINK_H_ | 80 #endif // COMPONENTS_DISPLAY_COMPOSITOR_GPU_COMPOSITOR_FRAME_SINK_H_ |
| OLD | NEW |