Chromium Code Reviews| 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(); |