| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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/browser/compositor/gpu_vsync_begin_frame_source.h" | 5 #include "content/browser/compositor/gpu_vsync_begin_frame_source.h" |
| 6 | 6 |
| 7 namespace content { | 7 namespace content { |
| 8 | 8 |
| 9 GpuVSyncBeginFrameSource::GpuVSyncBeginFrameSource( | 9 GpuVSyncBeginFrameSource::GpuVSyncBeginFrameSource( |
| 10 GpuVSyncControl* vsync_control) | 10 GpuVSyncControl* vsync_control) |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 OnBeginFrame(cc::BeginFrameArgs::Create( | 32 OnBeginFrame(cc::BeginFrameArgs::Create( |
| 33 BEGINFRAME_FROM_HERE, source_id(), next_sequence_number_, timestamp, | 33 BEGINFRAME_FROM_HERE, source_id(), next_sequence_number_, timestamp, |
| 34 deadline, interval, cc::BeginFrameArgs::NORMAL)); | 34 deadline, interval, cc::BeginFrameArgs::NORMAL)); |
| 35 } | 35 } |
| 36 | 36 |
| 37 void GpuVSyncBeginFrameSource::OnNeedsBeginFrames(bool needs_begin_frames) { | 37 void GpuVSyncBeginFrameSource::OnNeedsBeginFrames(bool needs_begin_frames) { |
| 38 needs_begin_frames_ = needs_begin_frames; | 38 needs_begin_frames_ = needs_begin_frames; |
| 39 vsync_control_->SetNeedsVSync(needs_begin_frames); | 39 vsync_control_->SetNeedsVSync(needs_begin_frames); |
| 40 } | 40 } |
| 41 | 41 |
| 42 void GpuVSyncBeginFrameSource::OnDidFinishFrame(const cc::BeginFrameAck& ack) {} | |
| 43 | |
| 44 } // namespace content | 42 } // namespace content |
| OLD | NEW |