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

Unified Diff: cc/layer_sorter.h

Issue 11189043: cc: Rename cc classes and members to match filenames (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 2 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/layer_sorter.h
diff --git a/cc/layer_sorter.h b/cc/layer_sorter.h
index 587df1e3f04dd4e7964ae13707fe010fbf23d418..fbee7c7d877f998e125267bcae75d30b2f1996d2 100644
--- a/cc/layer_sorter.h
+++ b/cc/layer_sorter.h
@@ -50,10 +50,10 @@ struct LayerShape {
};
struct GraphNode {
- explicit GraphNode(CCLayerImpl* cclayer);
+ explicit GraphNode(LayerImpl* layerImpl);
~GraphNode();
- CCLayerImpl* layer;
+ LayerImpl* layer;
LayerShape shape;
std::vector<GraphEdge*> incoming;
std::vector<GraphEdge*> outgoing;
@@ -75,12 +75,12 @@ struct GraphEdge {
-class CCLayerSorter {
+class LayerSorter {
public:
- CCLayerSorter();
- ~CCLayerSorter();
+ LayerSorter();
+ ~LayerSorter();
- typedef std::vector<CCLayerImpl*> LayerList;
+ typedef std::vector<LayerImpl*> LayerList;
void sort(LayerList::iterator first, LayerList::iterator last);
@@ -106,7 +106,7 @@ private:
void createGraphEdges();
void removeEdgeFromList(GraphEdge*, std::vector<GraphEdge*>&);
- DISALLOW_COPY_AND_ASSIGN(CCLayerSorter);
+ DISALLOW_COPY_AND_ASSIGN(LayerSorter);
};
}
« cc/active_animation.h ('K') | « cc/layer_quad_unittest.cc ('k') | cc/layer_sorter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698