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

Unified Diff: cc/trees/property_tree.cc

Issue 1149843004: cc: Fix uninitialized TransformNodeData member (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: OOPS Created 5 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/trees/property_tree.cc
diff --git a/cc/trees/property_tree.cc b/cc/trees/property_tree.cc
index d369ad9106005f13a74e25c8b64453cb2f2e1e0f..d96e9aa56653555e04e9de238c47f82a68169201 100644
--- a/cc/trees/property_tree.cc
+++ b/cc/trees/property_tree.cc
@@ -58,7 +58,8 @@ TransformNodeData::TransformNodeData()
node_and_ancestors_are_flat(true),
scrolls(false),
needs_sublayer_scale(false),
- layer_scale_factor(1.0f) {
+ layer_scale_factor(1.0f),
+ post_local_scale_factor(1.0f) {
}
TransformNodeData::~TransformNodeData() {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698