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

Unified Diff: cc/trees/layer_tree_impl.h

Issue 1887703002: cc: Add a main thread LayerListIterator (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/trees/layer_tree_impl.h
diff --git a/cc/trees/layer_tree_impl.h b/cc/trees/layer_tree_impl.h
index 8bda30b4b010ce1e23ec75779745aa7e6e5d684a..8f27f32bb8b96a64d02c70acc17d0b9d4dbd3943 100644
--- a/cc/trees/layer_tree_impl.h
+++ b/cc/trees/layer_tree_impl.h
@@ -148,10 +148,10 @@ class CC_EXPORT LayerTreeImpl {
void PushPropertiesTo(LayerTreeImpl* tree_impl);
- LayerListIterator begin();
- LayerListIterator end();
- LayerListReverseIterator rbegin();
- LayerListReverseIterator rend();
+ LayerListIterator<LayerImpl> begin();
+ LayerListIterator<LayerImpl> end();
+ LayerListReverseIterator<LayerImpl> rbegin();
+ LayerListReverseIterator<LayerImpl> rend();
// TODO(thakis): Consider marking this CC_EXPORT once we understand
// http://crbug.com/575700 better.

Powered by Google App Engine
This is Rietveld 408576698