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

Unified Diff: chrome/browser/visitedlink_event_listener.cc

Issue 5606002: Move:... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years 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
« no previous file with comments | « chrome/browser/visitedlink_event_listener.h ('k') | chrome/browser/visitedlink_master.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/visitedlink_event_listener.cc
===================================================================
--- chrome/browser/visitedlink_event_listener.cc (revision 68044)
+++ chrome/browser/visitedlink_event_listener.cc (working copy)
@@ -1,65 +0,0 @@
-// Copyright (c) 2009 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "chrome/browser/visitedlink_event_listener.h"
-
-#include "base/shared_memory.h"
-#include "chrome/browser/renderer_host/render_process_host.h"
-
-using base::Time;
-using base::TimeDelta;
-
-// The amount of time we wait to accumulate visited link additions.
-static const int kCommitIntervalMs = 100;
-
-VisitedLinkEventListener::VisitedLinkEventListener() {
-}
-
-VisitedLinkEventListener::~VisitedLinkEventListener() {
-}
-
-void VisitedLinkEventListener::NewTable(base::SharedMemory* table_memory) {
- if (!table_memory)
- return;
-
- // Send to all RenderProcessHosts.
- for (RenderProcessHost::iterator i(RenderProcessHost::AllHostsIterator());
- !i.IsAtEnd(); i.Advance()) {
- if (!i.GetCurrentValue()->HasConnection())
- continue;
-
- i.GetCurrentValue()->SendVisitedLinkTable(table_memory);
- }
-}
-
-void VisitedLinkEventListener::Add(VisitedLinkMaster::Fingerprint fingerprint) {
- pending_visited_links_.push_back(fingerprint);
-
- if (!coalesce_timer_.IsRunning()) {
- coalesce_timer_.Start(
- TimeDelta::FromMilliseconds(kCommitIntervalMs), this,
- &VisitedLinkEventListener::CommitVisitedLinks);
- }
-}
-
-void VisitedLinkEventListener::Reset() {
- pending_visited_links_.clear();
- coalesce_timer_.Stop();
-
- // Send to all RenderProcessHosts.
- for (RenderProcessHost::iterator i(RenderProcessHost::AllHostsIterator());
- !i.IsAtEnd(); i.Advance()) {
- i.GetCurrentValue()->ResetVisitedLinks();
- }
-}
-
-void VisitedLinkEventListener::CommitVisitedLinks() {
- // Send to all RenderProcessHosts.
- for (RenderProcessHost::iterator i(RenderProcessHost::AllHostsIterator());
- !i.IsAtEnd(); i.Advance()) {
- i.GetCurrentValue()->AddVisitedLinks(pending_visited_links_);
- }
-
- pending_visited_links_.clear();
-}
« no previous file with comments | « chrome/browser/visitedlink_event_listener.h ('k') | chrome/browser/visitedlink_master.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698