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

Unified Diff: content/browser/renderer_host/render_widget_host.h

Issue 7136001: GPU compositing surface handle is no longer sent to renderer process. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 6 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: content/browser/renderer_host/render_widget_host.h
===================================================================
--- content/browser/renderer_host/render_widget_host.h (revision 89036)
+++ content/browser/renderer_host/render_widget_host.h (working copy)
@@ -144,7 +144,7 @@
// RenderWidget is being destroyed or the render process crashed. You should
// never cache this pointer since it can become NULL if the renderer crashes,
// instead you should always ask for it using the accessor.
- void set_view(RenderWidgetHostView* view) { view_ = view; }
+ void set_view(RenderWidgetHostView* view);
jam 2011/06/21 21:49:03 nit: if you're doing work in this function, then i
RenderWidgetHostView* view() const { return view_; }
RenderProcessHost* process() const { return process_; }

Powered by Google App Engine
This is Rietveld 408576698