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

Unified Diff: chrome/browser/visitedlink/visitedlink_delegate.h

Issue 11825011: Componentize visitedlinks to src/components/visitedlink (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Final rebase Created 7 years, 11 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
« no previous file with comments | « chrome/browser/visitedlink/OWNERS ('k') | chrome/browser/visitedlink/visitedlink_event_listener.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/visitedlink/visitedlink_delegate.h
diff --git a/chrome/browser/visitedlink/visitedlink_delegate.h b/chrome/browser/visitedlink/visitedlink_delegate.h
deleted file mode 100644
index edfde3b2a9c265af2ddd941f96bad31010a2e574..0000000000000000000000000000000000000000
--- a/chrome/browser/visitedlink/visitedlink_delegate.h
+++ /dev/null
@@ -1,52 +0,0 @@
-// Copyright (c) 2012 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.
-
-#ifndef CHROME_BROWSER_VISITEDLINK_VISITEDLINK_DELEGATE_H_
-#define CHROME_BROWSER_VISITEDLINK_VISITEDLINK_DELEGATE_H_
-
-#include "base/memory/ref_counted.h"
-
-class GURL;
-
-namespace content {
-class BrowserContext;
-} // namespace content
-
-// Delegate class that clients of VisitedLinkMaster must implement.
-class VisitedLinkDelegate {
- public:
- // Returns true when the two BrowserContexts are equivalent.
- virtual bool AreEquivalentContexts(content::BrowserContext* context1,
- content::BrowserContext* context2) = 0;
-
- // See RebuildTable.
- class URLEnumerator : public base::RefCountedThreadSafe<URLEnumerator> {
- public:
- // Call this with each URL to rebuild the table.
- virtual void OnURL(const GURL& url) = 0;
-
- // This must be called by Delegate after RebuildTable is called. |success|
- // indicates all URLs have been returned successfully. The URLEnumerator
- // object cannot be used by the delegate after this call.
- virtual void OnComplete(bool success) = 0;
-
- protected:
- virtual ~URLEnumerator() {}
-
- private:
- friend class base::RefCountedThreadSafe<URLEnumerator>;
- };
-
- // Delegate class is responsible for persisting the list of visited URLs
- // across browser runs. This is called by VisitedLinkMaster to repopulate
- // its internal table. Note that methods on enumerator can be called on any
- // thread but the delegate is responsible for synchronizating the calls.
- virtual void RebuildTable(const scoped_refptr<URLEnumerator>& enumerator) = 0;
-
- protected:
-
- virtual ~VisitedLinkDelegate() {}
-};
-
-#endif // CHROME_BROWSER_VISITEDLINK_VISITEDLINK_DELEGATE_H_
« no previous file with comments | « chrome/browser/visitedlink/OWNERS ('k') | chrome/browser/visitedlink/visitedlink_event_listener.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698