| 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/surfaces/top_level_display_client.h" | 5 #include "components/mus/surfaces/top_level_display_client.h" |
| 6 | 6 |
| 7 #include "base/thread_task_runner_handle.h" | 7 #include "base/thread_task_runner_handle.h" |
| 8 #include "cc/output/compositor_frame.h" | 8 #include "cc/output/compositor_frame.h" |
| 9 #include "cc/output/copy_output_request.h" | 9 #include "cc/output/copy_output_request.h" |
| 10 #include "cc/scheduler/begin_frame_source.h" | 10 #include "cc/scheduler/begin_frame_source.h" |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 synthetic_frame_source_->OnUpdateVSyncParameters(timebase_time_ticks, | 112 synthetic_frame_source_->OnUpdateVSyncParameters(timebase_time_ticks, |
| 113 interval_time_delta); | 113 interval_time_delta); |
| 114 } | 114 } |
| 115 | 115 |
| 116 void TopLevelDisplayClient::ReturnResources( | 116 void TopLevelDisplayClient::ReturnResources( |
| 117 const cc::ReturnedResourceArray& resources) { | 117 const cc::ReturnedResourceArray& resources) { |
| 118 // TODO(fsamuel): Implement this. | 118 // TODO(fsamuel): Implement this. |
| 119 } | 119 } |
| 120 | 120 |
| 121 void TopLevelDisplayClient::SetBeginFrameSource( | 121 void TopLevelDisplayClient::SetBeginFrameSource( |
| 122 cc::SurfaceId surface_id, | |
| 123 cc::BeginFrameSource* begin_frame_source) { | 122 cc::BeginFrameSource* begin_frame_source) { |
| 124 // TODO(tansell): Implement this. | 123 // TODO(tansell): Implement this. |
| 125 } | 124 } |
| 126 | 125 |
| 127 } // namespace mus | 126 } // namespace mus |
| OLD | NEW |