| Index: chrome/browser/history/history.cc
|
| diff --git a/chrome/browser/history/history.cc b/chrome/browser/history/history.cc
|
| index 73efc915b1fbf7c5288e59d301370e342fc44e00..0736fc2f97ae713591d93dfe3d12125187e47e07 100644
|
| --- a/chrome/browser/history/history.cc
|
| +++ b/chrome/browser/history/history.cc
|
| @@ -357,6 +357,14 @@ void HistoryService::AddPage(const history::HistoryAddPageArgs& add_page_args) {
|
| add_page_args.Clone()));
|
| }
|
|
|
| +void HistoryService::AddPageNoVisitForBookmark(const GURL& url) {
|
| + if (!CanAddURL(url))
|
| + return;
|
| +
|
| + ScheduleAndForget(PRIORITY_NORMAL,
|
| + &HistoryBackend::AddPageNoVisitForBookmark, url);
|
| +}
|
| +
|
| void HistoryService::SetPageTitle(const GURL& url,
|
| const string16& title) {
|
| ScheduleAndForget(PRIORITY_NORMAL, &HistoryBackend::SetPageTitle, url, title);
|
|
|