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

Unified Diff: chrome/browser/renderer_host/render_process_host.h

Issue 397031: Launch processes asynchronously so as not to block the UI thread. For now, re... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: return 0 instead of -1 if zygote couldn't launch renderer Created 11 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
Index: chrome/browser/renderer_host/render_process_host.h
===================================================================
--- chrome/browser/renderer_host/render_process_host.h (revision 32255)
+++ chrome/browser/renderer_host/render_process_host.h (working copy)
@@ -17,9 +17,12 @@
#include "ipc/ipc_sync_channel.h"
class Profile;
+class URLRequestContextGetter;
struct ViewMsg_ClosePage_Params;
-class URLRequestContextGetter;
+namespace base {
+class SharedMemory;
+}
// Virtual interface that represents the browser side of the browser <->
// renderer communication channel. There will generally be one
@@ -173,6 +176,9 @@
// Add a word in the spellchecker.
virtual void AddWord(const string16& word) = 0;
+ // Informs the renderer about a new visited link table.
+ virtual void SendVisitedLinkTable(base::SharedMemory* table_memory) = 0;
+
// Notify the renderer that a link was visited.
virtual void AddVisitedLinks(
const VisitedLinkCommon::Fingerprints& links) = 0;
« no previous file with comments | « chrome/browser/renderer_host/mock_render_process_host.cc ('k') | chrome/browser/tab_contents/tab_contents.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698