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

Unified Diff: cc/output/renderer.h

Issue 12912010: cc: Convert non-const reference arguments to pointers. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix ui/compositor Created 7 years, 9 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 | « cc/output/gl_renderer_unittest.cc ('k') | cc/output/software_renderer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/output/renderer.h
diff --git a/cc/output/renderer.h b/cc/output/renderer.h
index 4a6dea29df62e9331bf470e77440bcf508533d3f..c4dcf3f6b55ec705f1fa49b722d7e611b1b8e571 100644
--- a/cc/output/renderer.h
+++ b/cc/output/renderer.h
@@ -56,7 +56,7 @@ class CC_EXPORT Renderer {
// This passes ownership of the render passes to the renderer. It should
// consume them, and empty the list.
- virtual void DrawFrame(RenderPassList& render_passes_in_draw_order) = 0;
+ virtual void DrawFrame(RenderPassList* render_passes_in_draw_order) = 0;
// Waits for rendering to finish.
virtual void Finish() = 0;
« no previous file with comments | « cc/output/gl_renderer_unittest.cc ('k') | cc/output/software_renderer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698