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

Unified Diff: cc/layers/layer_impl.h

Issue 1947683007: cc : Add subtree is hidden bool to effect tree (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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/layers/layer.cc ('k') | cc/layers/layer_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/layers/layer_impl.h
diff --git a/cc/layers/layer_impl.h b/cc/layers/layer_impl.h
index 8f72d022da2a983415e26a6b2c946e1314d55470..7e6ab5846cc085bd02f24d6b2df24e4ccda86f53 100644
--- a/cc/layers/layer_impl.h
+++ b/cc/layers/layer_impl.h
@@ -208,9 +208,6 @@ class CC_EXPORT LayerImpl {
void SetDrawsContent(bool draws_content);
bool DrawsContent() const { return draws_content_; }
- void SetHideLayerAndSubtree(bool hide);
- bool hide_layer_and_subtree() const { return hide_layer_and_subtree_; }
-
LayerImplTestProperties* test_properties() {
if (!test_properties_)
test_properties_.reset(new LayerImplTestProperties());
@@ -243,7 +240,6 @@ class CC_EXPORT LayerImpl {
void SetOpacity(float opacity);
float opacity() const { return opacity_; }
- float EffectiveOpacity() const;
bool OpacityIsAnimating() const;
bool HasPotentiallyRunningOpacityAnimation() const;
bool OpacityIsAnimatingOnImplOnly() const;
@@ -602,7 +598,6 @@ class CC_EXPORT LayerImpl {
bool should_check_backface_visibility_ : 1;
bool draws_content_ : 1;
bool is_drawn_render_surface_layer_list_member_ : 1;
- bool hide_layer_and_subtree_ : 1;
bool is_affected_by_page_scale_ : 1;
« no previous file with comments | « cc/layers/layer.cc ('k') | cc/layers/layer_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698