diff options
author | jeremy@chromium.org <jeremy@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-24 11:05:21 +0000 |
---|---|---|
committer | jeremy@chromium.org <jeremy@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-24 11:05:21 +0000 |
commit | 86ec66596544ad8b248e482d4ac84a2b3a3b33fd (patch) | |
tree | dc420f08dcdeace86f8ca88b81415aa77ac913d4 /chrome/app | |
parent | 5a9bb8d6fad3df068fa8fe8301ca1685c0c66bb6 (diff) | |
download | chromium_src-86ec66596544ad8b248e482d4ac84a2b3a3b33fd.zip chromium_src-86ec66596544ad8b248e482d4ac84a2b3a3b33fd.tar.gz chromium_src-86ec66596544ad8b248e482d4ac84a2b3a3b33fd.tar.bz2 |
revert r35237 since it causes Mac unit tests to fail.
"Split more targets from chrome.gyp to add support for building Native Client for 64-bit Windows. "
BUG=NONE
TEST=NONE
Review URL: http://codereview.chromium.org/520006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@35259 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/app')
-rw-r--r-- | chrome/app/dummy_main_functions.cc | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/chrome/app/dummy_main_functions.cc b/chrome/app/dummy_main_functions.cc deleted file mode 100644 index fa066ca..0000000 --- a/chrome/app/dummy_main_functions.cc +++ /dev/null @@ -1,44 +0,0 @@ -// Copyright (c) 2009 The Chromium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -#include "chrome/common/main_function_params.h" -#include "chrome/common/result_codes.h" - -// Native Client binary for 64-bit Windows can run only the NaCl loader or -// the sandbox broker processes. Other process types are not supported. -int BrowserMain(const MainFunctionParams& parameters) { - return ResultCodes::BAD_PROCESS_TYPE; -} - -int RendererMain(const MainFunctionParams& parameters) { - return ResultCodes::BAD_PROCESS_TYPE; -} - -int PluginMain(const MainFunctionParams& parameters) { - return ResultCodes::BAD_PROCESS_TYPE; -} - -int WorkerMain(const MainFunctionParams& parameters) { - return ResultCodes::BAD_PROCESS_TYPE; -} - -int UtilityMain(const MainFunctionParams& parameters) { - return ResultCodes::BAD_PROCESS_TYPE; -} - -int ProfileImportMain(const MainFunctionParams& parameters) { - return ResultCodes::BAD_PROCESS_TYPE; -} - -int ZygoteMain(const MainFunctionParams& parameters) { - return ResultCodes::BAD_PROCESS_TYPE; -} - -int NaClBrokerMain(const MainFunctionParams& parameters) { - return ResultCodes::BAD_PROCESS_TYPE; -} - -int DiagnosticsMain(const CommandLine& command_line) { - return 1; -} |