OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "chrome/browser/extensions/api/messaging/native_process_launcher.h" | 5 #include "chrome/browser/extensions/api/messaging/native_process_launcher.h" |
6 | 6 |
7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 #include "base/eintr_wrapper.h" | 8 #include "base/eintr_wrapper.h" |
9 #include "base/file_util.h" | 9 #include "base/file_util.h" |
10 #include "base/logging.h" | 10 #include "base/logging.h" |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 write_pipe_read_fd.reset(); | 49 write_pipe_read_fd.reset(); |
50 read_pipe_write_fd.reset(); | 50 read_pipe_write_fd.reset(); |
51 | 51 |
52 *read_file = *read_pipe_read_fd.release(); | 52 *read_file = *read_pipe_read_fd.release(); |
53 *write_file = *write_pipe_write_fd.release(); | 53 *write_file = *write_pipe_write_fd.release(); |
54 | 54 |
55 return true; | 55 return true; |
56 } | 56 } |
57 | 57 |
58 } // namespace extensions | 58 } // namespace extensions |
OLD | NEW |