| Index: components/history/core/browser/history_service.h
|
| diff --git a/components/history/core/browser/history_service.h b/components/history/core/browser/history_service.h
|
| index 710ac708a86fee84ba0758172c23e953f9be4cc7..5030fbb5e8b5ceed85b04c1c0c8aa70fb69bc4b7 100644
|
| --- a/components/history/core/browser/history_service.h
|
| +++ b/components/history/core/browser/history_service.h
|
| @@ -198,8 +198,8 @@ class HistoryService : public syncer::SyncableService, public KeyedService {
|
| // one entry). If there are no redirects, this array may also be empty for
|
| // the convenience of callers.
|
| //
|
| - // 'did_replace_entry' is true when the navigation entry for this page has
|
| - // replaced the existing entry. A non-user initiated redirect causes such
|
| + // 'replaced_entry_url' is non-empty when the navigation entry for this page
|
| + // has replaced the existing entry. A non-user initiated redirect causes such
|
| // replacement.
|
| //
|
| // All "Add Page" functions will update the visited link database.
|
| @@ -211,7 +211,7 @@ class HistoryService : public syncer::SyncableService, public KeyedService {
|
| const RedirectList& redirects,
|
| ui::PageTransition transition,
|
| VisitSource visit_source,
|
| - bool did_replace_entry);
|
| + base::Optional<GURL> replaced_entry_url);
|
|
|
| // For adding pages to history where no tracking information can be done.
|
| void AddPage(const GURL& url, base::Time time, VisitSource visit_source);
|
|
|