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

Unified Diff: chrome/common/render_messages.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/common/process_watcher.cc ('k') | chrome/common/render_messages_internal.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/render_messages.h
===================================================================
--- chrome/common/render_messages.h (revision 5371)
+++ chrome/common/render_messages.h (working copy)
@@ -189,7 +189,7 @@
struct ViewHostMsg_PaintRect_Params {
// The bitmap to be painted into the rect given by bitmap_rect. Valid only
// in the context of the renderer process.
- SharedMemoryHandle bitmap;
+ base::SharedMemoryHandle bitmap;
// The position and size of the bitmap.
gfx::Rect bitmap_rect;
@@ -223,7 +223,7 @@
struct ViewHostMsg_ScrollRect_Params {
// The bitmap to be painted into the rect exposed by scrolling. This handle
// is valid only in the context of the renderer process.
- SharedMemoryHandle bitmap;
+ base::SharedMemoryHandle bitmap;
// The position and size of the bitmap.
gfx::Rect bitmap_rect;
@@ -367,7 +367,7 @@
struct ViewHostMsg_DidPrintPage_Params {
// A shared memory handle to the EMF data. This data can be quite large so a
// memory map needs to be used.
- SharedMemoryHandle emf_data_handle;
+ base::SharedMemoryHandle emf_data_handle;
// Size of the EMF data.
unsigned data_size;
« no previous file with comments | « chrome/common/process_watcher.cc ('k') | chrome/common/render_messages_internal.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698