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

Unified Diff: cc/layers/layer.h

Issue 1912893002: cc : Stop pushing properties not used by LayerImpl to LayerImpl. (2) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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/layers/layer.h
diff --git a/cc/layers/layer.h b/cc/layers/layer.h
index 220a9dba884eacf73e804312c111d895985887b6..5c5d52d605af2767b797a09ac816821783c73857 100644
--- a/cc/layers/layer.h
+++ b/cc/layers/layer.h
@@ -487,6 +487,9 @@ class CC_EXPORT Layer : public base::RefCounted<Layer> {
void SetSubtreePropertyChanged();
bool subtree_property_changed() const { return subtree_property_changed_; }
+ void SetLayerPropertyChanged();
+ bool layer_property_changed() const { return layer_property_changed_; }
ajuma 2016/04/21 23:59:14 There aren't any real non-test callers of SetForce
jaydasika 2016/04/22 17:00:38 Done.
+
void DidBeginTracing();
int num_copy_requests_in_target_subtree();
@@ -643,6 +646,7 @@ class CC_EXPORT Layer : public base::RefCounted<Layer> {
bool transform_is_invertible_ : 1;
bool has_render_surface_ : 1;
bool subtree_property_changed_ : 1;
+ bool layer_property_changed_ : 1;
Region non_fast_scrollable_region_;
Region touch_event_handler_region_;
gfx::PointF position_;
« no previous file with comments | « no previous file | cc/layers/layer.cc » ('j') | third_party/WebKit/Source/platform/graphics/CompositorMutableStateTest.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698