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

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: rsesek's review 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..7b3836758f383637e96b45b930312d1a813b2145 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)
Robert Sesek 2015/06/01 21:58:07 Don't think the IOS bit is actually necessary sinc
reveman 2015/06/02 22:48:07 Done.
+#include "content/common/mac/io_surface_manager_token.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 OnSetIOSurfaceManagerToken(const IOSurfaceManagerToken& token);
+#endif
void EnsureConnected();

Powered by Google App Engine
This is Rietveld 408576698