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