| 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/file_util.h" | 8 #include "base/file_util.h" |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "base/posix/eintr_wrapper.h" | 10 #include "base/posix/eintr_wrapper.h" |
| 11 #include "base/process_util.h" | 11 #include "base/process/launch.h" |
| 12 #include "chrome/browser/extensions/api/messaging/native_messaging_host_manifest
.h" | 12 #include "chrome/browser/extensions/api/messaging/native_messaging_host_manifest
.h" |
| 13 | 13 |
| 14 namespace extensions { | 14 namespace extensions { |
| 15 | 15 |
| 16 namespace { | 16 namespace { |
| 17 | 17 |
| 18 const char kNativeMessagingDirectory[] = | 18 const char kNativeMessagingDirectory[] = |
| 19 #if defined(OFFICIAL_BUILD) && defined(OS_MACOSX) | 19 #if defined(OFFICIAL_BUILD) && defined(OS_MACOSX) |
| 20 "/Library/Google/Chrome/NativeMessagingHosts"; | 20 "/Library/Google/Chrome/NativeMessagingHosts"; |
| 21 #elif defined(OFFICIAL_BUILD) && !defined(OS_MACOSX) | 21 #elif defined(OFFICIAL_BUILD) && !defined(OS_MACOSX) |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 write_pipe_read_fd.reset(); | 76 write_pipe_read_fd.reset(); |
| 77 read_pipe_write_fd.reset(); | 77 read_pipe_write_fd.reset(); |
| 78 | 78 |
| 79 *read_file = *read_pipe_read_fd.release(); | 79 *read_file = *read_pipe_read_fd.release(); |
| 80 *write_file = *write_pipe_write_fd.release(); | 80 *write_file = *write_pipe_write_fd.release(); |
| 81 | 81 |
| 82 return true; | 82 return true; |
| 83 } | 83 } |
| 84 | 84 |
| 85 } // namespace extensions | 85 } // namespace extensions |
| OLD | NEW |