Chromium Code Reviews| Index: chrome/common/nacl_types.h |
| =================================================================== |
| --- chrome/common/nacl_types.h (revision 155316) |
| +++ chrome/common/nacl_types.h (working copy) |
| @@ -14,6 +14,8 @@ |
| #include "base/file_descriptor_posix.h" |
| #endif |
| +#include "net/base/tcp_listen_socket.h" |
|
Mark Seaborn
2012/09/10 15:39:45
Unconditional #includes should go in the same bloc
halyavin
2012/09/11 11:16:12
This is left from my experiments. I don't need thi
|
| + |
| #if defined(OS_WIN) |
| #include <windows.h> // for HANDLE |
| #endif |
| @@ -55,6 +57,7 @@ |
| bool enable_exception_handling; |
| bool enable_debug_stub; |
| bool enable_ipc_proxy; |
| + FileDescriptor debug_stub_server_socket; |
|
Mark Seaborn
2012/09/10 15:39:45
Nit: can you put this after 'handles'?
halyavin
2012/09/11 11:16:12
Done.
|
| }; |
| } // namespace nacl |