diff options
Diffstat (limited to 'chrome/browser/renderer_host/render_process_host.h')
-rw-r--r-- | chrome/browser/renderer_host/render_process_host.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/chrome/browser/renderer_host/render_process_host.h b/chrome/browser/renderer_host/render_process_host.h index 1b2d9ef..0914a52 100644 --- a/chrome/browser/renderer_host/render_process_host.h +++ b/chrome/browser/renderer_host/render_process_host.h @@ -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 @@ class RenderProcessHost : public IPC::Channel::Sender, // 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; |