Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(68)

Side by Side Diff: content/browser/compositor/gpu_vsync_begin_frame_source.cc

Issue 2888043004: [cc] Add and plumb CFS::DidNotProduceFrame. (Closed)
Patch Set: remove ExternalBFS::OnDidFinishFrame and related ack tracking. Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698