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

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: Created 7 years, 8 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 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;
}
}

Powered by Google App Engine
This is Rietveld 408576698