| Index: chrome/browser/history/history.cc
|
| diff --git a/chrome/browser/history/history.cc b/chrome/browser/history/history.cc
|
| index 809ea5a07634a0f9501f2fce3427dc7dfb3a116f..2f3cc3c6c9b272bf62d596a4a0931978916e7e24 100644
|
| --- a/chrome/browser/history/history.cc
|
| +++ b/chrome/browser/history/history.cc
|
| @@ -762,6 +762,12 @@ void HistoryService::DeleteURL(const GURL& url) {
|
| ScheduleAndForget(PRIORITY_NORMAL, &HistoryBackend::DeleteURL, url);
|
| }
|
|
|
| +void HistoryService::DeleteURLsForTest(const std::vector<GURL>& urls) {
|
| + // We will update the visited links when we observe the delete
|
| + // notifications.
|
| + ScheduleAndForget(PRIORITY_NORMAL, &HistoryBackend::DeleteURLs, urls);
|
| +}
|
| +
|
| void HistoryService::ExpireHistoryBetween(
|
| const std::set<GURL>& restrict_urls,
|
| Time begin_time, Time end_time,
|
|
|