| Index: chrome/browser/bookmarks/bookmark_html_writer.cc
|
| diff --git a/chrome/browser/bookmarks/bookmark_html_writer.cc b/chrome/browser/bookmarks/bookmark_html_writer.cc
|
| index aeb125d47de640cfd8e5b1823c934e31198801ea..6cb8ac991555ed66ebc8b00c6eec858bc6362c7b 100644
|
| --- a/chrome/browser/bookmarks/bookmark_html_writer.cc
|
| +++ b/chrome/browser/bookmarks/bookmark_html_writer.cc
|
| @@ -417,7 +417,7 @@ void BookmarkFaviconFetcher::Observe(
|
| const content::NotificationSource& source,
|
| const content::NotificationDetails& details) {
|
| if (chrome::NOTIFICATION_PROFILE_DESTROYED == type && fetcher != NULL) {
|
| - MessageLoop::current()->DeleteSoon(FROM_HERE, fetcher);
|
| + base::MessageLoop::current()->DeleteSoon(FROM_HERE, fetcher);
|
| fetcher = NULL;
|
| }
|
| }
|
| @@ -445,7 +445,7 @@ void BookmarkFaviconFetcher::ExecuteWriter() {
|
| profile_)),
|
| path_, favicons_map_.release(), observer_)));
|
| if (fetcher != NULL) {
|
| - MessageLoop::current()->DeleteSoon(FROM_HERE, fetcher);
|
| + base::MessageLoop::current()->DeleteSoon(FROM_HERE, fetcher);
|
| fetcher = NULL;
|
| }
|
| }
|
|
|