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

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

Issue 11573060: Remove VisitedLink dependency on rest of chrome (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix unittest compile. Created 8 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
Index: chrome/browser/visitedlink/visitedlink_delegate.h
diff --git a/chrome/browser/visitedlink/visitedlink_delegate.h b/chrome/browser/visitedlink/visitedlink_delegate.h
new file mode 100644
index 0000000000000000000000000000000000000000..73de9645461c132b9b7bfa4de5e6394f349f2165
--- /dev/null
+++ b/chrome/browser/visitedlink/visitedlink_delegate.h
@@ -0,0 +1,44 @@
+// 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_
+
+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 {
boliu 2012/12/29 01:48:12 style question: HistoryService inherits VisitedLin
joth 2012/12/29 18:32:06 I don't know about any specific convention, but I
boliu 2012/12/30 02:08:15 Changed to VisitedLinkDelegate::URLEnumerator ever
+ 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 has been returned successfully.
joth 2012/12/29 18:32:06 nit: has -> have
boliu 2012/12/30 02:08:15 Done.
+ virtual void OnComplete(bool success) = 0;
+
+ protected:
+ virtual ~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.
+ virtual void RebuildTable(URLEnumerator* enumerator) = 0;
+
+ protected:
+ virtual ~VisitedLinkDelegate() {}
+};
+
+#endif // CHROME_BROWSER_VISITEDLINK_VISITEDLINK_DELEGATE_H_

Powered by Google App Engine
This is Rietveld 408576698