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

Unified Diff: chrome/browser/visitedlink/visitedlink_master.cc

Issue 10872032: Revert 152946 - Replace HistoryQuickProvider protobuf-based caching with an SQLite-based database. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 4 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/history/url_index_private_data_unittest.cc ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/visitedlink/visitedlink_master.cc
===================================================================
--- chrome/browser/visitedlink/visitedlink_master.cc (revision 152962)
+++ chrome/browser/visitedlink/visitedlink_master.cc (working copy)
@@ -150,7 +150,7 @@
void DisownMaster();
// HistoryService::URLEnumerator
- virtual void OnURL(const history::URLRow& url_row);
+ virtual void OnURL(const GURL& url);
virtual void OnComplete(bool succeed);
private:
@@ -956,8 +956,7 @@
master_ = NULL;
}
-void VisitedLinkMaster::TableBuilder::OnURL(const history::URLRow& url_row) {
- const GURL& url((url_row.url()));
+void VisitedLinkMaster::TableBuilder::OnURL(const GURL& url) {
if (!url.is_empty()) {
fingerprints_.push_back(VisitedLinkMaster::ComputeURLFingerprint(
url.spec().data(), url.spec().length(), salt_));
« no previous file with comments | « chrome/browser/history/url_index_private_data_unittest.cc ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698