| 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 "content/renderer/android/synchronous_compositor_filter.h" | 5 #include "content/renderer/android/synchronous_compositor_filter.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "base/callback.h" | 9 #include "base/callback.h" |
| 10 #include "base/stl_util.h" | 10 #include "base/stl_util.h" |
| (...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 275 | 275 |
| 276 SynchronousCompositorFilter::Entry::Entry() | 276 SynchronousCompositorFilter::Entry::Entry() |
| 277 : begin_frame_source(nullptr), | 277 : begin_frame_source(nullptr), |
| 278 output_surface(nullptr), | 278 output_surface(nullptr), |
| 279 synchronous_input_handler_proxy(nullptr) {} | 279 synchronous_input_handler_proxy(nullptr) {} |
| 280 | 280 |
| 281 bool SynchronousCompositorFilter::Entry::IsReady() { | 281 bool SynchronousCompositorFilter::Entry::IsReady() { |
| 282 return begin_frame_source && synchronous_input_handler_proxy; | 282 return begin_frame_source && synchronous_input_handler_proxy; |
| 283 } | 283 } |
| 284 | 284 |
| 285 void SynchronousCompositorFilter::SetIsFlinging(bool is_flinging) {} |
| 286 |
| 285 } // namespace content | 287 } // namespace content |
| OLD | NEW |