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 <windows.h> | 7 #include <windows.h> |
8 | 8 |
9 #include "base/logging.h" | 9 #include "base/logging.h" |
10 #include "base/process_util.h" | 10 #include "base/process_util.h" |
11 #include "base/stringprintf.h" | 11 #include "base/stringprintf.h" |
12 #include "base/string_number_conversions.h" | 12 #include "base/string_number_conversions.h" |
13 | 13 |
14 namespace extensions { | 14 namespace extensions { |
15 | 15 |
16 bool NativeProcessLauncher::LaunchNativeProcess( | 16 bool NativeProcessLauncher::LaunchNativeProcess( |
17 const FilePath& path, | 17 const FilePath& path, |
18 base::ProcessHandle* native_process_handle, | 18 base::ProcessHandle* native_process_handle, |
19 NativeMessageProcessHost::FileHandle* read_file, | 19 NativeMessageProcessHost::FileHandle* read_file, |
20 NativeMessageProcessHost::FileHandle* write_file) const { | 20 NativeMessageProcessHost::FileHandle* write_file) const { |
21 NOTREACHED(); | 21 NOTREACHED(); |
22 return false; | 22 return false; |
23 } | 23 } |
24 | 24 |
25 } // namespace extensions | 25 } // namespace extensions |
OLD | NEW |