| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2011 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/common/chrome_result_codes.h" | |
| 6 #include "content/common/main_function_params.h" | |
| 7 | |
| 8 // Native Client binary for 64-bit Windows can run only the NaCl loader or | |
| 9 // the sandbox broker processes. Other process types are not supported. | |
| 10 int BrowserMain(const MainFunctionParams& parameters) { | |
| 11 return chrome::RESULT_CODE_BAD_PROCESS_TYPE; | |
| 12 } | |
| 13 | |
| 14 int RendererMain(const MainFunctionParams& parameters) { | |
| 15 return chrome::RESULT_CODE_BAD_PROCESS_TYPE; | |
| 16 } | |
| 17 | |
| 18 int PluginMain(const MainFunctionParams& parameters) { | |
| 19 return chrome::RESULT_CODE_BAD_PROCESS_TYPE; | |
| 20 } | |
| 21 | |
| 22 int PpapiPluginMain(const MainFunctionParams& parameters) { | |
| 23 return chrome::RESULT_CODE_BAD_PROCESS_TYPE; | |
| 24 } | |
| 25 | |
| 26 int PpapiBrokerMain(const MainFunctionParams& parameters) { | |
| 27 return chrome::RESULT_CODE_BAD_PROCESS_TYPE; | |
| 28 } | |
| 29 | |
| 30 int WorkerMain(const MainFunctionParams& parameters) { | |
| 31 return chrome::RESULT_CODE_BAD_PROCESS_TYPE; | |
| 32 } | |
| 33 | |
| 34 int UtilityMain(const MainFunctionParams& parameters) { | |
| 35 return chrome::RESULT_CODE_BAD_PROCESS_TYPE; | |
| 36 } | |
| 37 | |
| 38 int ProfileImportMain(const MainFunctionParams& parameters) { | |
| 39 return chrome::RESULT_CODE_BAD_PROCESS_TYPE; | |
| 40 } | |
| 41 | |
| 42 int ZygoteMain(const MainFunctionParams& parameters) { | |
| 43 return chrome::RESULT_CODE_BAD_PROCESS_TYPE; | |
| 44 } | |
| 45 | |
| 46 int DiagnosticsMain(const CommandLine& command_line) { | |
| 47 return 1; | |
| 48 } | |
| 49 | |
| 50 int GpuMain(const MainFunctionParams&) { | |
| 51 return chrome::RESULT_CODE_BAD_PROCESS_TYPE; | |
| 52 } | |
| 53 | |
| 54 int ServiceProcessMain(const MainFunctionParams& parameters) { | |
| 55 return chrome::RESULT_CODE_BAD_PROCESS_TYPE; | |
| 56 } | |
| OLD | NEW |