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

Unified Diff: content/public/child/child_thread.h

Issue 1184523003: attachment broker wip (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Minor comments. 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 | « content/plugin/plugin_thread.cc ('k') | content/public/common/child_process_host.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/child/child_thread.h
diff --git a/content/public/child/child_thread.h b/content/public/child/child_thread.h
index 6293ed164d8443dbd474ce35934a3235c0337943..d306ae426d8d218e622211a4a58ac0a793edfa7d 100644
--- a/content/public/child/child_thread.h
+++ b/content/public/child/child_thread.h
@@ -6,15 +6,24 @@
#define CONTENT_PUBLIC_CHILD_CHILD_THREAD_H_
#include "content/common/content_export.h"
+#include "ipc/attachment_broker.h"
#include "ipc/ipc_sender.h"
#if defined(OS_WIN)
#include <windows.h>
#endif
+namespace IPC {
+class AttachmentBroker;
+}
+
namespace content {
-class CONTENT_EXPORT ChildThread : public IPC::Sender {
+// An abstract base class that contains logic shared between most child
+// processes of the embedder.
+class CONTENT_EXPORT ChildThread
+ : public IPC::Sender,
+ virtual public IPC::SupportsAttachmentBrokering {
public:
// Returns the one child thread for this process. Note that this can only be
// accessed when running on the child thread itself.
« no previous file with comments | « content/plugin/plugin_thread.cc ('k') | content/public/common/child_process_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698