| Index: chrome/renderer/renderer_glue.cc
|
| ===================================================================
|
| --- chrome/renderer/renderer_glue.cc (revision 6868)
|
| +++ chrome/renderer/renderer_glue.cc (working copy)
|
| @@ -252,6 +252,15 @@
|
| return results;
|
| }
|
|
|
| +uint64 webkit_glue::VisitedLinkHash(const char* canonical_url, size_t length) {
|
| + return RenderThread::current()->visited_link_slave()->ComputeURLFingerprint(
|
| + canonical_url, length);
|
| +}
|
| +
|
| +bool webkit_glue::IsLinkVisited(uint64 link_hash) {
|
| + return RenderThread::current()->visited_link_slave()->IsVisited(link_hash);
|
| +}
|
| +
|
| #ifndef USING_SIMPLE_RESOURCE_LOADER_BRIDGE
|
|
|
| // Each RenderView has a ResourceDispatcher. In unit tests, this function may
|
|
|