OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 // TODO(port): the ifdefs in here are a first step towards trying to determine | 5 // TODO(port): the ifdefs in here are a first step towards trying to determine |
6 // the correct abstraction for all the OS functionality required at this | 6 // the correct abstraction for all the OS functionality required at this |
7 // stage of process initialization. It should not be taken as a final | 7 // stage of process initialization. It should not be taken as a final |
8 // abstraction. | 8 // abstraction. |
9 | 9 |
10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 #include "tools/memory_watcher/memory_watcher.h" | 76 #include "tools/memory_watcher/memory_watcher.h" |
77 #endif | 77 #endif |
78 #if defined(OS_MACOSX) | 78 #if defined(OS_MACOSX) |
79 #include "third_party/WebKit/WebKit/mac/WebCoreSupport/WebSystemInterface.h" | 79 #include "third_party/WebKit/WebKit/mac/WebCoreSupport/WebSystemInterface.h" |
80 #endif | 80 #endif |
81 | 81 |
82 extern int BrowserMain(const MainFunctionParams&); | 82 extern int BrowserMain(const MainFunctionParams&); |
83 extern int RendererMain(const MainFunctionParams&); | 83 extern int RendererMain(const MainFunctionParams&); |
84 extern int PluginMain(const MainFunctionParams&); | 84 extern int PluginMain(const MainFunctionParams&); |
85 extern int WorkerMain(const MainFunctionParams&); | 85 extern int WorkerMain(const MainFunctionParams&); |
86 extern int NaClMain(const MainFunctionParams&); | |
87 extern int UtilityMain(const MainFunctionParams&); | 86 extern int UtilityMain(const MainFunctionParams&); |
88 extern int ProfileImportMain(const MainFunctionParams&); | 87 extern int ProfileImportMain(const MainFunctionParams&); |
89 extern int ZygoteMain(const MainFunctionParams&); | 88 extern int ZygoteMain(const MainFunctionParams&); |
90 | 89 |
91 #if defined(OS_WIN) | 90 #if defined(OS_WIN) |
92 // TODO(erikkay): isn't this already defined somewhere? | 91 // TODO(erikkay): isn't this already defined somewhere? |
93 #define DLLEXPORT __declspec(dllexport) | 92 #define DLLEXPORT __declspec(dllexport) |
94 | 93 |
95 // We use extern C for the prototype DLLEXPORT to avoid C++ name mangling. | 94 // We use extern C for the prototype DLLEXPORT to avoid C++ name mangling. |
96 extern "C" { | 95 extern "C" { |
(...skipping 478 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
575 } else if (process_type == switches::kProfileImportProcess) { | 574 } else if (process_type == switches::kProfileImportProcess) { |
576 #if defined (OS_MACOSX) | 575 #if defined (OS_MACOSX) |
577 rv = ProfileImportMain(main_params); | 576 rv = ProfileImportMain(main_params); |
578 #else | 577 #else |
579 // TODO(port): Use OOP profile import - http://crbug.com/22142 . | 578 // TODO(port): Use OOP profile import - http://crbug.com/22142 . |
580 NOTIMPLEMENTED(); | 579 NOTIMPLEMENTED(); |
581 rv = -1; | 580 rv = -1; |
582 #endif | 581 #endif |
583 } else if (process_type == switches::kWorkerProcess) { | 582 } else if (process_type == switches::kWorkerProcess) { |
584 rv = WorkerMain(main_params); | 583 rv = WorkerMain(main_params); |
585 } else if (process_type == switches::kNaClProcess) { | |
586 rv = NaClMain(main_params); | |
587 } else if (process_type == switches::kZygoteProcess) { | 584 } else if (process_type == switches::kZygoteProcess) { |
588 #if defined(OS_LINUX) | 585 #if defined(OS_LINUX) |
589 if (ZygoteMain(main_params)) { | 586 if (ZygoteMain(main_params)) { |
590 // Zygote::HandleForkRequest may have reallocated the command | 587 // Zygote::HandleForkRequest may have reallocated the command |
591 // line so update it here with the new version. | 588 // line so update it here with the new version. |
592 const CommandLine& parsed_command_line = | 589 const CommandLine& parsed_command_line = |
593 *CommandLine::ForCurrentProcess(); | 590 *CommandLine::ForCurrentProcess(); |
594 MainFunctionParams main_params(parsed_command_line, sandbox_wrapper, | 591 MainFunctionParams main_params(parsed_command_line, sandbox_wrapper, |
595 &autorelease_pool); | 592 &autorelease_pool); |
596 rv = RendererMain(main_params); | 593 rv = RendererMain(main_params); |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
637 | 634 |
638 logging::CleanupChromeLogging(); | 635 logging::CleanupChromeLogging(); |
639 | 636 |
640 #if defined(OS_MACOSX) && defined(GOOGLE_CHROME_BUILD) | 637 #if defined(OS_MACOSX) && defined(GOOGLE_CHROME_BUILD) |
641 // TODO(mark): See the TODO(mark) above at InitCrashReporter. | 638 // TODO(mark): See the TODO(mark) above at InitCrashReporter. |
642 DestructCrashReporter(); | 639 DestructCrashReporter(); |
643 #endif // OS_MACOSX && GOOGLE_CHROME_BUILD | 640 #endif // OS_MACOSX && GOOGLE_CHROME_BUILD |
644 | 641 |
645 return rv; | 642 return rv; |
646 } | 643 } |
OLD | NEW |