| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef REMOTING_HOST_IPC_UTIL_H_ | 5 #ifndef REMOTING_HOST_IPC_UTIL_H_ |
| 6 #define REMOTING_HOST_IPC_UTIL_H_ | 6 #define REMOTING_HOST_IPC_UTIL_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | |
| 11 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 12 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
| 13 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
| 13 #include "build/build_config.h" |
| 14 #include "ipc/ipc_platform_file.h" | 14 #include "ipc/ipc_platform_file.h" |
| 15 | 15 |
| 16 #if defined(OS_WIN) | 16 #if defined(OS_WIN) |
| 17 #include "base/win/scoped_handle.h" | 17 #include "base/win/scoped_handle.h" |
| 18 #endif // defined(OS_WIN) | 18 #endif // defined(OS_WIN) |
| 19 | 19 |
| 20 namespace base { | 20 namespace base { |
| 21 class File; | 21 class File; |
| 22 class SingleThreadTaskRunner; | 22 class SingleThreadTaskRunner; |
| 23 } // namespace base | 23 } // namespace base |
| (...skipping 23 matching lines...) Expand all Loading... |
| 47 bool CreateIpcChannel( | 47 bool CreateIpcChannel( |
| 48 const std::string& channel_name, | 48 const std::string& channel_name, |
| 49 const std::string& pipe_security_descriptor, | 49 const std::string& pipe_security_descriptor, |
| 50 base::win::ScopedHandle* pipe_out); | 50 base::win::ScopedHandle* pipe_out); |
| 51 | 51 |
| 52 #endif // defined(OS_WIN) | 52 #endif // defined(OS_WIN) |
| 53 | 53 |
| 54 } // namespace remoting | 54 } // namespace remoting |
| 55 | 55 |
| 56 #endif // REMOTING_HOST_IPC_UTIL_H_ | 56 #endif // REMOTING_HOST_IPC_UTIL_H_ |
| OLD | NEW |