Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4624)

Unified Diff: chrome/browser/bookmarks/bookmark_html_writer.cc

Issue 14113053: chrome: Use base::MessageLoop. (Part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase again Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 6ddd35b0e0cb75b9458c527df62aa714258ec405..620628a1fb14a887484a7dfc74ea8201212ffe8e 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;
}
}

Powered by Google App Engine
This is Rietveld 408576698