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

Unified Diff: cc/trees/proxy_impl.cc

Issue 2668873002: cc: Add checker-imaging support to TileManager. (Closed)
Patch Set: remove include 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/trees/proxy_impl.h ('k') | cc/trees/single_thread_proxy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/trees/proxy_impl.cc
diff --git a/cc/trees/proxy_impl.cc b/cc/trees/proxy_impl.cc
index 0a8620eb7e724c3873aa24afa00413fe39945079..34b85e03493fde10b4a1551a858fdddec00031fa 100644
--- a/cc/trees/proxy_impl.cc
+++ b/cc/trees/proxy_impl.cc
@@ -432,6 +432,13 @@ void ProxyImpl::OnDrawForCompositorFrameSink(bool resourceless_software_draw) {
scheduler_->OnDrawForCompositorFrameSink(resourceless_software_draw);
}
+void ProxyImpl::NeedsImplSideInvalidation() {
+ DCHECK(IsImplThread());
+ // TODO(khushalsagar): Plumb this to the scheduler when
+ // https://codereview.chromium.org/2659123004/ lands. See crbug.com/686267.
+ NOTIMPLEMENTED();
+}
+
void ProxyImpl::WillBeginImplFrame(const BeginFrameArgs& args) {
DCHECK(IsImplThread());
layer_tree_host_impl_->WillBeginImplFrame(args);
« no previous file with comments | « cc/trees/proxy_impl.h ('k') | cc/trees/single_thread_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698