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

Unified Diff: content/child/child_thread_impl.h

Issue 1137453002: content: Pass IOSurface references using Mach IPC. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update comment Created 5 years, 7 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/child_thread_impl.h
diff --git a/content/child/child_thread_impl.h b/content/child/child_thread_impl.h
index b9efc4d2a5f8fd2532c98c5ffbdc1f4251e5d5c1..449aa2df58466a2ce742a5ed9916a70eff9e80d3 100644
--- a/content/child/child_thread_impl.h
+++ b/content/child/child_thread_impl.h
@@ -20,6 +20,10 @@
#include "content/public/child/child_thread.h"
#include "ipc/ipc_message.h" // For IPC_MESSAGE_LOG_ENABLED.
+#if defined(OS_MACOSX) && !defined(OS_IOS)
+#include "gpu/command_buffer/common/mailbox.h"
+#endif
+
namespace base {
class MessageLoop;
@@ -232,6 +236,9 @@ class CONTENT_EXPORT ChildThreadImpl
#if defined(USE_TCMALLOC)
void OnGetTcmallocStats();
#endif
+#if defined(OS_MACOSX) && !defined(OS_IOS)
+ void OnSetIOSurfaceManagerMailbox(const gpu::Mailbox& mailbox);
+#endif
void EnsureConnected();

Powered by Google App Engine
This is Rietveld 408576698