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

Unified Diff: cc/layer_impl.cc

Issue 11731002: Implement a method to access the non-composited content root layer picture pile. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review fixes. Created 7 years, 12 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
Index: cc/layer_impl.cc
diff --git a/cc/layer_impl.cc b/cc/layer_impl.cc
index 1f6e21ab0d8cac82a8968a47df25c73286acb364..e0c55d00b86185914b4d872d16840e8d0de4e450 100644
--- a/cc/layer_impl.cc
+++ b/cc/layer_impl.cc
@@ -14,6 +14,7 @@
#include "cc/layer_tree_impl.h"
#include "cc/layer_tree_settings.h"
#include "cc/math_util.h"
+#include "cc/picture_pile_impl.h"
#include "cc/proxy.h"
#include "cc/quad_sink.h"
#include "cc/scrollbar_animation_controller.h"
@@ -298,6 +299,11 @@ gfx::Rect LayerImpl::layerRectToContentRect(const gfx::RectF& layerRect) const
return gfx::ToEnclosingRect(contentRect);
}
+scoped_refptr<PicturePileImpl> LayerImpl::GetPicturePileClone() const
+{
+ return scoped_refptr<PicturePileImpl>();
+}
+
std::string LayerImpl::indentString(int indent)
{
std::string str;
« no previous file with comments | « cc/layer_impl.h ('k') | cc/layer_tree_host.h » ('j') | cc/layer_tree_host_impl.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698