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

Unified Diff: chrome/browser/visitedlink_master.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/browser/task_manager_resource_providers.cc ('k') | chrome/browser/visitedlink_master.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/visitedlink_master.h
===================================================================
--- chrome/browser/visitedlink_master.h (revision 5371)
+++ chrome/browser/visitedlink_master.h (working copy)
@@ -27,7 +27,7 @@
// operations are pending on another thread.
class VisitedLinkMaster : public VisitedLinkCommon {
public:
- typedef void (PostNewTableEvent)(SharedMemory*);
+ typedef void (PostNewTableEvent)(base::SharedMemory*);
// The |file_thread| may be NULL, in which case write operations will be
// synchronous.
@@ -65,14 +65,15 @@
// Duplicates the handle to the shared memory to another process.
// Returns true on success.
- bool ShareToProcess(ProcessHandle process, SharedMemoryHandle *new_handle);
+ bool ShareToProcess(base::ProcessHandle process,
+ base::SharedMemoryHandle *new_handle);
// returns the name of the shared memory object that slaves can use to map
// the data
std::wstring GetSharedMemoryName() const;
// Returns the handle to the shared memory
- SharedMemoryHandle GetSharedMemoryHandle();
+ base::SharedMemoryHandle GetSharedMemoryHandle();
// Adds a URL to the table.
void AddURL(const GURL& url);
@@ -329,7 +330,7 @@
HANDLE file_;
// Shared memory consists of a SharedHeader followed by the table.
- SharedMemory *shared_memory_;
+ base::SharedMemory *shared_memory_;
// When we generate new tables, we increment the serial number of the
// shared memory object.
« no previous file with comments | « chrome/browser/task_manager_resource_providers.cc ('k') | chrome/browser/visitedlink_master.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698