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

Unified Diff: content/child/thread_safe_sender.h

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.h
diff --git a/content/child/thread_safe_sender.h b/content/child/thread_safe_sender.h
index 443e20a720a3893fd3826f1a44945be9e8019c9c..37ad96bfbf4ed8b16c1b13dd36f43fc546fa05fd 100644
--- a/content/child/thread_safe_sender.h
+++ b/content/child/thread_safe_sender.h
@@ -19,9 +19,9 @@ class SyncMessageFilter;
}
namespace content {
-class ChildThread;
+class ChildThreadImpl;
-// The class of Sender returned by ChildThread::thread_safe_sender().
+// The class of Sender returned by ChildThreadImpl::thread_safe_sender().
class CONTENT_EXPORT ThreadSafeSender
: public IPC::Sender,
public base::RefCountedThreadSafe<ThreadSafeSender> {
@@ -29,7 +29,7 @@ class CONTENT_EXPORT ThreadSafeSender
bool Send(IPC::Message* msg) override;
private:
- friend class ChildThread; // for construction
+ friend class ChildThreadImpl; // for construction
friend class IndexedDBDispatcherTest;
friend class WebIDBCursorImplTest;
friend class base::RefCountedThreadSafe<ThreadSafeSender>;

Powered by Google App Engine
This is Rietveld 408576698