Index: core/cross/cairo/renderer_cairo.h |
=================================================================== |
--- core/cross/cairo/renderer_cairo.h (revision 71191) |
+++ core/cross/cairo/renderer_cairo.h (working copy) |
@@ -152,7 +152,7 @@ |
void PopRenderStates(); |
protected: |
- typedef std::list<Layer::Ref> LayerRefList; |
+ typedef std::list<Layer*> LayerList; |
// Keep the constructor protected so only factory methods can create |
// renderers. |
@@ -219,7 +219,7 @@ |
float max_z); |
// Mask the area of the current layer that will collide with other images. |
- void MaskArea(cairo_t* cr, LayerRefList::iterator it); |
+ void MaskArea(cairo_t* cr, LayerList::iterator it); |
// Paint the background with black color. |
// TODO(fransiskusx): Support changing the background color. |
@@ -237,7 +237,7 @@ |
cairo_t* bg_drawing_; |
// Array of Layer |
- LayerRefList layer_list_; |
+ LayerList layer_list_; |
}; |
} // namespace o2d |