Index: cc/layer_impl.h |
diff --git a/cc/layer_impl.h b/cc/layer_impl.h |
index 1624a6cb96938427ce4f66947a4ce5bba7a44fd7..1316196e494ec18ef44a947c88b8b3d74e59acaf 100644 |
--- a/cc/layer_impl.h |
+++ b/cc/layer_impl.h |
@@ -151,8 +151,8 @@ public: |
void setUseParentBackfaceVisibility(bool useParentBackfaceVisibility) { m_useParentBackfaceVisibility = useParentBackfaceVisibility; } |
bool useParentBackfaceVisibility() const { return m_useParentBackfaceVisibility; } |
- void setUseLCDText(bool useLCDText) { m_useLCDText = useLCDText; } |
- bool useLCDText() const { return m_useLCDText; } |
+ void setCanUseLCDText(bool useLCDText) { m_canUseLCDText = useLCDText; } |
+ bool canUseLCDText() const { return m_canUseLCDText; } |
void setSublayerTransform(const gfx::Transform&); |
const gfx::Transform& sublayerTransform() const { return m_sublayerTransform; } |
@@ -179,6 +179,7 @@ public: |
bool drawOpacityIsAnimating() const { return m_drawProperties.opacity_is_animating; } |
bool drawTransformIsAnimating() const { return m_drawProperties.target_space_transform_is_animating; } |
bool screenSpaceTransformIsAnimating() const { return m_drawProperties.screen_space_transform_is_animating; } |
+ bool screenSpaceOpacityIsAnimating() const { return m_drawProperties.screen_space_opacity_is_animating; } |
bool isClipped() const { return m_drawProperties.is_clipped; } |
const gfx::Rect& clipRect() const { return m_drawProperties.clip_rect; } |
const gfx::Rect& drawableContentRect() const { return m_drawProperties.drawable_content_rect; } |
@@ -359,7 +360,7 @@ private: |
bool m_drawCheckerboardForMissingTiles; |
gfx::Transform m_sublayerTransform; |
gfx::Transform m_transform; |
- bool m_useLCDText; |
+ bool m_canUseLCDText; |
bool m_drawsContent; |
bool m_forceRenderSurface; |