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

Unified Diff: cc/layer.cc

Issue 11475054: cc: Add a blocksPendingCommit flag to LayerImpl (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: LayerImpl=>Layer, pendingTree=>pendingCommit Created 8 years 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/layer.h ('k') | cc/texture_layer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/layer.cc
diff --git a/cc/layer.cc b/cc/layer.cc
index d0b3808a2899d201109741885f63c1445a5e70a2..2cac222d82934f8f448e31f05bebf1f21d7ed305 100644
--- a/cc/layer.cc
+++ b/cc/layer.cc
@@ -120,6 +120,11 @@ gfx::Rect Layer::layerRectToContentRect(const gfx::RectF& layerRect) const
return gfx::ToEnclosingRect(contentRect);
}
+bool Layer::blocksPendingCommit() const
+{
+ return false;
+}
+
void Layer::setParent(Layer* layer)
{
DCHECK(!layer || !layer->hasAncestor(this));
« no previous file with comments | « cc/layer.h ('k') | cc/texture_layer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698