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

Unified Diff: chrome/common/resource_dispatcher.cc

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/resource_dispatcher.h ('k') | chrome/installer/setup/uninstall.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/resource_dispatcher.cc
===================================================================
--- chrome/common/resource_dispatcher.cc (revision 5371)
+++ chrome/common/resource_dispatcher.cc (working copy)
@@ -334,7 +334,7 @@
}
void ResourceDispatcher::OnReceivedData(int request_id,
- SharedMemoryHandle shm_handle,
+ base::SharedMemoryHandle shm_handle,
int data_len) {
// Acknowlegde the reception of this data.
IPC::Message::Sender* sender = message_sender();
@@ -343,7 +343,7 @@
new ViewHostMsg_DataReceived_ACK(MSG_ROUTING_NONE, request_id));
DCHECK((shm_handle && data_len > 0) || (!shm_handle && !data_len));
- SharedMemory shared_mem(shm_handle, true); // read only
+ base::SharedMemory shared_mem(shm_handle, true); // read only
PendingRequestList::iterator it = pending_requests_.find(request_id);
if (it == pending_requests_.end()) {
« no previous file with comments | « chrome/common/resource_dispatcher.h ('k') | chrome/installer/setup/uninstall.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698