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

Unified Diff: cc/layers/layer.h

Issue 1168903003: cc: Fix size_t to int truncations in tiles/ and trees/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 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 | cc/layers/layer.cc » ('j') | cc/tiles/picture_layer_tiling_set.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/layers/layer.h
diff --git a/cc/layers/layer.h b/cc/layers/layer.h
index 84e9c0f8ba69c65fa70ce676ed5cc1f6e61e0ae7..6b7bb8d3c441ad3b40982e5f46b5b36849d42375 100644
--- a/cc/layers/layer.h
+++ b/cc/layers/layer.h
@@ -635,7 +635,7 @@ class CC_EXPORT Layer : public base::RefCounted<Layer>,
// The number of direct children or dependent layers that need to be recursed
// to in order for them or a descendent of them to push properties to the impl
// side.
- int num_dependents_need_push_properties_;
+ size_t num_dependents_need_push_properties_;
danakj 2015/06/09 17:39:49 How come? We just ++ and -- it, it's not related t
vmpstr 2015/06/09 18:37:17 Hmm. I think this might've been just a test thing
// Tracks whether this layer may have changed stacking order with its
// siblings.
« no previous file with comments | « no previous file | cc/layers/layer.cc » ('j') | cc/tiles/picture_layer_tiling_set.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698