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

Unified Diff: chrome/utility/font_cache_handler_win.cc

Issue 1167163002: chrome: Remove use of MessageLoopProxy and deprecated MessageLoop APIs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added some missing message_loop.h includes. Created 5 years, 6 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
« no previous file with comments | « chrome/test/ppapi/ppapi_test.cc ('k') | chrome/utility/image_writer/image_writer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/utility/font_cache_handler_win.cc
diff --git a/chrome/utility/font_cache_handler_win.cc b/chrome/utility/font_cache_handler_win.cc
index cd7aa70de32b3ed7a56b1b423174393b26ef7179..cf850c0798c97a0ef167bba37d323f9abf2ade3a 100644
--- a/chrome/utility/font_cache_handler_win.cc
+++ b/chrome/utility/font_cache_handler_win.cc
@@ -29,7 +29,7 @@ bool FontCacheHandler::OnMessageReceived(const IPC::Message& message) {
void FontCacheHandler::OnBuildFontCache(const base::FilePath& full_path) {
DCHECK(!cache_thread_);
- utility_task_runner_ = base::MessageLoop::current()->message_loop_proxy();
+ utility_task_runner_ = base::MessageLoop::current()->task_runner();
// Create worker thread for building font cache.
cache_thread_.reset(new base::Thread("font_cache_thread"));
« no previous file with comments | « chrome/test/ppapi/ppapi_test.cc ('k') | chrome/utility/image_writer/image_writer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698