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

Unified Diff: content/child/thread_safe_sender.cc

Issue 897563002: Unify the three places that patch font loading for PDFium on Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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: content/child/thread_safe_sender.cc
diff --git a/content/child/thread_safe_sender.cc b/content/child/thread_safe_sender.cc
index d9ecfd1ca308aba69b9a9c1461f48829b2ccb4db..b8aef12d2519b7effd9602d87a3f00acdd9b5a06 100644
--- a/content/child/thread_safe_sender.cc
+++ b/content/child/thread_safe_sender.cc
@@ -5,7 +5,7 @@
#include "content/child/thread_safe_sender.h"
#include "base/message_loop/message_loop_proxy.h"
-#include "content/child/child_thread.h"
+#include "content/child/child_thread_impl.h"
#include "ipc/ipc_sync_message_filter.h"
namespace content {
@@ -21,7 +21,7 @@ ThreadSafeSender::~ThreadSafeSender() {
bool ThreadSafeSender::Send(IPC::Message* msg) {
if (main_loop_->BelongsToCurrentThread())
- return ChildThread::current()->Send(msg);
+ return ChildThreadImpl::current()->Send(msg);
return sync_filter_->Send(msg);
}

Powered by Google App Engine
This is Rietveld 408576698