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

Unified Diff: chrome/renderer/render_widget.h

Issue 10895: Add Terminate() to the Process object, have RenderProcessHost use this to avo... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 12 years, 1 month 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 | « chrome/renderer/render_view.cc ('k') | chrome/renderer/render_widget.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/render_widget.h
===================================================================
--- chrome/renderer/render_widget.h (revision 5371)
+++ chrome/renderer/render_widget.h (working copy)
@@ -101,7 +101,7 @@
// Paints the given rectangular region of the WebWidget into paint_buf (a
// shared memory segment returned by AllocPaintBuf). The caller must ensure
// that the given rect fits within the bounds of the WebWidget.
- void PaintRect(const gfx::Rect& rect, SharedMemory* paint_buf);
+ void PaintRect(const gfx::Rect& rect, base::SharedMemory* paint_buf);
// Get the size of the paint buffer for the given rectangle, rounding up to
// the allocation granularity of the system.
@@ -204,8 +204,8 @@
// Shared memory handles that are currently in use to transfer an image to
// the browser.
- SharedMemory* current_paint_buf_;
- SharedMemory* current_scroll_buf_;
+ base::SharedMemory* current_paint_buf_;
+ base::SharedMemory* current_scroll_buf_;
// The smallest bounding rectangle that needs to be re-painted. This is non-
// empty if a paint event is pending.
« no previous file with comments | « chrome/renderer/render_view.cc ('k') | chrome/renderer/render_widget.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698