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

Unified Diff: content/child/shared_worker_devtools_agent.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/shared_worker_devtools_agent.cc
diff --git a/content/child/shared_worker_devtools_agent.cc b/content/child/shared_worker_devtools_agent.cc
index 3a9b3509b20f84d2a977140c2655599ac5b50d55..26a51edf6dd7f0ef15bf4d0dd87e9ca476203823 100644
--- a/content/child/shared_worker_devtools_agent.cc
+++ b/content/child/shared_worker_devtools_agent.cc
@@ -4,7 +4,7 @@
#include "content/child/shared_worker_devtools_agent.h"
-#include "content/child/child_thread.h"
+#include "content/child/child_thread_impl.h"
#include "content/common/devtools_messages.h"
#include "ipc/ipc_channel.h"
#include "third_party/WebKit/public/platform/WebCString.h"
@@ -95,7 +95,7 @@ void SharedWorkerDevToolsAgent::OnDispatchOnInspectorBackend(
}
bool SharedWorkerDevToolsAgent::Send(IPC::Message* message) {
- return ChildThread::current()->Send(message);
+ return ChildThreadImpl::current()->Send(message);
}
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698