diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-18 02:41:26 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-18 02:41:26 +0000 |
commit | 9610ef248891f4be129eb915a43d226350569910 (patch) | |
tree | e0d45f8c90d82ec4b95120b2a6926e5b1e4dfd80 /chrome/browser/visitedlink_master.h | |
parent | f7906654d9ffbf1385843b4c7457797564273a56 (diff) | |
download | chromium_src-9610ef248891f4be129eb915a43d226350569910.zip chromium_src-9610ef248891f4be129eb915a43d226350569910.tar.gz chromium_src-9610ef248891f4be129eb915a43d226350569910.tar.bz2 |
Launch processes asynchronously so as not to block the UI thread. For now, renderer only, I'll take care of plugin/worker/utility processes in a followup change. (relanding 32203)
BUG=6844
Review URL: http://codereview.chromium.org/397031
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32264 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/visitedlink_master.h')
-rw-r--r-- | chrome/browser/visitedlink_master.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/chrome/browser/visitedlink_master.h b/chrome/browser/visitedlink_master.h index a2bc7b9..fc35ff9 100644 --- a/chrome/browser/visitedlink_master.h +++ b/chrome/browser/visitedlink_master.h @@ -80,13 +80,7 @@ class VisitedLinkMaster : public VisitedLinkCommon { // object won't work. bool Init(); - // Duplicates the handle to the shared memory to another process. - // Returns true on success. - bool ShareToProcess(base::ProcessHandle process, - base::SharedMemoryHandle *new_handle); - - // Returns the handle to the shared memory - base::SharedMemoryHandle GetSharedMemoryHandle(); + base::SharedMemory* shared_memory() { return shared_memory_; } // Adds a URL to the table. void AddURL(const GURL& url); |