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

Side by Side Diff: cc/surfaces/direct_compositor_frame_sink.cc

Issue 2691453002: [cc] Track observer status in ExternalBeginFrameSource. (Closed)
Patch Set: Fix comments. Created 3 years, 10 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
« no previous file with comments | « cc/surfaces/direct_compositor_frame_sink.h ('k') | cc/test/begin_frame_source_test.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "cc/surfaces/direct_compositor_frame_sink.h" 5 #include "cc/surfaces/direct_compositor_frame_sink.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "cc/output/compositor_frame.h" 8 #include "cc/output/compositor_frame.h"
9 #include "cc/output/compositor_frame_sink_client.h" 9 #include "cc/output/compositor_frame_sink_client.h"
10 #include "cc/surfaces/display.h" 10 #include "cc/surfaces/display.h"
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 void DirectCompositorFrameSink::WillDrawSurface( 143 void DirectCompositorFrameSink::WillDrawSurface(
144 const LocalSurfaceId& local_surface_id, 144 const LocalSurfaceId& local_surface_id,
145 const gfx::Rect& damage_rect) { 145 const gfx::Rect& damage_rect) {
146 // TODO(staraz): Implement this. 146 // TODO(staraz): Implement this.
147 } 147 }
148 148
149 void DirectCompositorFrameSink::OnNeedsBeginFrames(bool needs_begin_frame) { 149 void DirectCompositorFrameSink::OnNeedsBeginFrames(bool needs_begin_frame) {
150 support_->SetNeedsBeginFrame(needs_begin_frame); 150 support_->SetNeedsBeginFrame(needs_begin_frame);
151 } 151 }
152 152
153 void DirectCompositorFrameSink::OnDidFinishFrame(const BeginFrameAck& ack) {
154 // TODO(eseckler): Pass on the ack to support_ and its BeginFrameSource.
155 }
156
153 } // namespace cc 157 } // namespace cc
OLDNEW
« no previous file with comments | « cc/surfaces/direct_compositor_frame_sink.h ('k') | cc/test/begin_frame_source_test.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698