| 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 #include "components/mus/ws/server_window_surface.h" | 5 #include "components/mus/ws/server_window_surface.h" |
| 6 | 6 |
| 7 #include "cc/output/compositor_frame.h" | 7 #include "cc/output/compositor_frame.h" |
| 8 #include "cc/quads/shared_quad_state.h" | 8 #include "cc/quads/shared_quad_state.h" |
| 9 #include "cc/quads/surface_draw_quad.h" | 9 #include "cc/quads/surface_draw_quad.h" |
| 10 #include "components/mus/surfaces/surfaces_state.h" | 10 #include "components/mus/surfaces/surfaces_state.h" |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 if (!client_) | 108 if (!client_) |
| 109 return; | 109 return; |
| 110 client_->ReturnResources( | 110 client_->ReturnResources( |
| 111 mojo::Array<mojom::ReturnedResourcePtr>::From(resources)); | 111 mojo::Array<mojom::ReturnedResourcePtr>::From(resources)); |
| 112 } | 112 } |
| 113 | 113 |
| 114 void ServerWindowSurface::SetBeginFrameSource( | 114 void ServerWindowSurface::SetBeginFrameSource( |
| 115 cc::SurfaceId surface_id, | 115 cc::SurfaceId surface_id, |
| 116 cc::BeginFrameSource* begin_frame_source) { | 116 cc::BeginFrameSource* begin_frame_source) { |
| 117 // TODO(tansell): Implement this. | 117 // TODO(tansell): Implement this. |
| 118 NOTIMPLEMENTED(); | |
| 119 } | 118 } |
| 120 | 119 |
| 121 } // namespace ws | 120 } // namespace ws |
| 122 | 121 |
| 123 } // namespace mus | 122 } // namespace mus |
| OLD | NEW |