| 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..d3411c8e28c40373e19111804c561f677123a2f3 100644
|
| --- a/chrome/browser/history/history_backend.cc
|
| +++ b/chrome/browser/history/history_backend.cc
|
| @@ -1065,13 +1065,13 @@ void HistoryBackend::AddPageNoVisitForBookmark(const GURL& url,
|
| db_->AddURL(url_info);
|
| }
|
|
|
| -void HistoryBackend::IterateURLs(HistoryService::URLEnumerator* iterator) {
|
| +void HistoryBackend::IterateURLs(VisitedLinkDelegate::URLEnumerator* iterator) {
|
| if (db_.get()) {
|
| HistoryDatabase::URLEnumerator e;
|
| if (db_->InitURLEnumeratorForEverything(&e)) {
|
| URLRow info;
|
| while (e.GetNextURL(&info)) {
|
| - iterator->OnURL(info);
|
| + iterator->OnURL(info.url());
|
| }
|
| iterator->OnComplete(true); // Success.
|
| return;
|
|
|