| 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 CONTENT_RENDERER_MUS_RENDERER_WINDOW_TREE_CLIENT_H_ | 5 #ifndef CONTENT_RENDERER_MUS_RENDERER_WINDOW_TREE_CLIENT_H_ |
| 6 #define CONTENT_RENDERER_MUS_RENDERER_WINDOW_TREE_CLIENT_H_ | 6 #define CONTENT_RENDERER_MUS_RENDERER_WINDOW_TREE_CLIENT_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "mojo/public/cpp/bindings/binding.h" | 9 #include "mojo/public/cpp/bindings/binding.h" |
| 10 #include "services/ui/common/types.h" | 10 #include "services/ui/common/types.h" |
| 11 #include "services/ui/public/cpp/client_compositor_frame_sink.h" | |
| 12 #include "services/ui/public/interfaces/window_tree.mojom.h" | 11 #include "services/ui/public/interfaces/window_tree.mojom.h" |
| 13 | 12 |
| 14 namespace cc { | 13 namespace cc { |
| 15 class CompositorFrameSink; | 14 class CompositorFrameSink; |
| 16 class ContextProvider; | 15 class ContextProvider; |
| 17 } | 16 } |
| 18 | 17 |
| 19 namespace gpu { | 18 namespace gpu { |
| 20 class GpuMemoryBufferManager; | 19 class GpuMemoryBufferManager; |
| 21 } | 20 } |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 CompositorFrameSinkCallback pending_compositor_frame_sink_callback_; | 162 CompositorFrameSinkCallback pending_compositor_frame_sink_callback_; |
| 164 ui::mojom::WindowTreePtr tree_; | 163 ui::mojom::WindowTreePtr tree_; |
| 165 mojo::Binding<ui::mojom::WindowTreeClient> binding_; | 164 mojo::Binding<ui::mojom::WindowTreeClient> binding_; |
| 166 | 165 |
| 167 DISALLOW_COPY_AND_ASSIGN(RendererWindowTreeClient); | 166 DISALLOW_COPY_AND_ASSIGN(RendererWindowTreeClient); |
| 168 }; | 167 }; |
| 169 | 168 |
| 170 } // namespace content | 169 } // namespace content |
| 171 | 170 |
| 172 #endif // CONTENT_RENDERER_MUS_RENDERER_WINDOW_TREE_CLIENT_H_ | 171 #endif // CONTENT_RENDERER_MUS_RENDERER_WINDOW_TREE_CLIENT_H_ |
| OLD | NEW |