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

Unified Diff: cc/layer.h

Issue 11503005: cc: Refactor content scale/bounds into draw properties (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
Index: cc/layer.h
diff --git a/cc/layer.h b/cc/layer.h
index 91a7cdbcd94c76b89476ea9473909f1bd46f4f60..5d20e1f747e26f78112f6cd379258031ddb1b3db 100644
--- a/cc/layer.h
+++ b/cc/layer.h
@@ -84,8 +84,8 @@ public:
// A layer's bounds are in logical, non-page-scaled pixels (however, the
// root layer's bounds are in physical pixels).
void setBounds(const gfx::Size&);
+ virtual void didUpdateBounds();
shawnsingh 2012/12/11 21:54:05 I think we can do without this. Instead, I think
enne (OOO) 2012/12/11 23:23:44 Sadly, no. Unfortunately, we do so much in conten
const gfx::Size& bounds() const { return m_bounds; }
- virtual gfx::Size contentBounds() const;
void setMasksToBounds(bool);
bool masksToBounds() const { return m_masksToBounds; }
@@ -227,9 +227,10 @@ public:
// The contentsScale converts from logical, non-page-scaled pixels to target pixels.
// The contentsScale is 1 for the root layer as it is already in physical pixels.
// By default contentsScale is forced to be 1 except for subclasses of ContentsScalingLayer.
- virtual float contentsScaleX() const;
- virtual float contentsScaleY() const;
- virtual void setContentsScale(float contentsScale) { }
+ float contentsScaleX() const { return m_drawProperties.contents_scale_x; }
+ float contentsScaleY() const { return m_drawProperties.contents_scale_y; }
shawnsingh 2012/12/11 21:54:05 maybe to avoid confusion with the previous state o
enne (OOO) 2012/12/11 23:23:44 I think that's just an issue with ImageLayer shado
+ gfx::Size contentBounds() const { return m_drawProperties.content_bounds; }
+ virtual void setIdealContentsScale(float ideal_contents_scale);
shawnsingh 2012/12/11 21:54:05 instead of "set" which makes it feel like it's par
enne (OOO) 2012/12/11 23:23:44 Sure. I can rename this for clarity.
// The scale at which contents should be rastered, to match the scale at
// which they will drawn to the screen. This scale is a component of the
@@ -316,6 +317,8 @@ protected:
virtual scoped_ptr<LayerImpl> createLayerImpl(LayerTreeHostImpl* hostImpl);
int m_layerId;
+ DrawProperties<Layer, RenderSurface> m_drawProperties;
+
private:
friend class base::RefCounted<Layer>;
@@ -389,8 +392,6 @@ private:
WebKit::WebAnimationDelegate* m_layerAnimationDelegate;
WebKit::WebLayerScrollClient* m_layerScrollClient;
-
- DrawProperties<Layer, RenderSurface> m_drawProperties;
};
void sortLayers(std::vector<scoped_refptr<Layer> >::iterator, std::vector<scoped_refptr<Layer> >::iterator, void*);

Powered by Google App Engine
This is Rietveld 408576698