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

Unified Diff: core/cross/cairo/renderer_cairo.h

Issue 6320002: O2D: Several (unrelated) improvements:... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/o3d/
Patch Set: Created 9 years, 11 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 | « core/cross/cairo/layer.cc ('k') | core/cross/cairo/renderer_cairo.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « core/cross/cairo/layer.cc ('k') | core/cross/cairo/renderer_cairo.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698