| 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 #include "build/build_config.h" |
| 5 #include "remoting/host/setup/test_util.h" | 6 #include "remoting/host/setup/test_util.h" |
| 6 | 7 |
| 7 #if defined(OS_WIN) | 8 #if defined(OS_WIN) |
| 8 #include <windows.h> | 9 #include <windows.h> |
| 9 #elif defined(OS_POSIX) | 10 #elif defined(OS_POSIX) |
| 10 #include <unistd.h> | 11 #include <unistd.h> |
| 11 #endif | 12 #endif |
| 12 | 13 |
| 13 namespace remoting { | 14 namespace remoting { |
| 14 | 15 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 29 *write_file = base::File(fds[1]); | 30 *write_file = base::File(fds[1]); |
| 30 return true; | 31 return true; |
| 31 } | 32 } |
| 32 return false; | 33 return false; |
| 33 #else | 34 #else |
| 34 #error Not implemented | 35 #error Not implemented |
| 35 #endif | 36 #endif |
| 36 } | 37 } |
| 37 | 38 |
| 38 } // namepsace remoting | 39 } // namepsace remoting |
| OLD | NEW |