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

Unified Diff: chrome/browser/history/history_backend.cc

Issue 11573060: Remove VisitedLink dependency on rest of chrome (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use delegate instead 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/history/history_backend.cc
diff --git a/chrome/browser/history/history_backend.cc b/chrome/browser/history/history_backend.cc
index 779e67ea0ff1f04a3095f5d8624a3b8f8f827fcb..5123eb2b2a08e87b35eb87c6658c542e441e1b17 100644
--- a/chrome/browser/history/history_backend.cc
+++ b/chrome/browser/history/history_backend.cc
@@ -1071,7 +1071,7 @@ void HistoryBackend::IterateURLs(HistoryService::URLEnumerator* iterator) {
if (db_->InitURLEnumeratorForEverything(&e)) {
URLRow info;
while (e.GetNextURL(&info)) {
- iterator->OnURL(info);
+ iterator->OnURL(info.url());
}
iterator->OnComplete(true); // Success.
return;

Powered by Google App Engine
This is Rietveld 408576698