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

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

Issue 113591: Fix Acid3 Test 48: LINKTEST, Chromium side.... (Closed) Base URL: svn://chrome-svn.corp.google.com/chrome/trunk/src/
Patch Set: Made waiting more bearable. Created 11 years, 6 months 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 19822)
+++ chrome/browser/renderer_host/render_process_host.h (working copy)
@@ -13,6 +13,7 @@
#include "base/scoped_ptr.h"
#include "chrome/common/ipc_sync_channel.h"
#include "chrome/common/transport_dib.h"
+#include "chrome/common/visitedlink_common.h"
class Profile;
@@ -138,6 +139,14 @@
// Add a word in the spellchecker.
virtual void AddWord(const std::wstring& word) = 0;
+ // Notify the renderer that a link was visited.
+ virtual void AddVisitedLinks(
+ const VisitedLinkCommon::Fingerprints& links) = 0;
+
+ // Clear internal visited links buffer and ask the renderer to update link
+ // coloring state for all of its links.
+ virtual void ResetVisitedLinks() = 0;
+
// Try to shutdown the associated renderer process as fast as possible.
// If this renderer has any RenderViews with unload handlers, then this
// function does nothing. The current implementation uses TerminateProcess.
« no previous file with comments | « chrome/browser/renderer_host/mock_render_process_host.cc ('k') | chrome/browser/renderer_host/test_render_view_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698