Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(174)

Side by Side Diff: chrome/app/dummy_main_functions.cc

Issue 2001009: Created a new process type called the service process to host background task... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/app/chrome_dll_main.cc ('k') | chrome/chrome.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 #include "chrome/common/main_function_params.h" 5 #include "chrome/common/main_function_params.h"
6 #include "chrome/common/result_codes.h" 6 #include "chrome/common/result_codes.h"
7 7
8 // Native Client binary for 64-bit Windows can run only the NaCl loader or 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. 9 // the sandbox broker processes. Other process types are not supported.
10 int BrowserMain(const MainFunctionParams& parameters) { 10 int BrowserMain(const MainFunctionParams& parameters) {
(...skipping 24 matching lines...) Expand all
35 return ResultCodes::BAD_PROCESS_TYPE; 35 return ResultCodes::BAD_PROCESS_TYPE;
36 } 36 }
37 37
38 int DiagnosticsMain(const CommandLine& command_line) { 38 int DiagnosticsMain(const CommandLine& command_line) {
39 return 1; 39 return 1;
40 } 40 }
41 41
42 int GpuMain(const MainFunctionParams&) { 42 int GpuMain(const MainFunctionParams&) {
43 return ResultCodes::BAD_PROCESS_TYPE; 43 return ResultCodes::BAD_PROCESS_TYPE;
44 } 44 }
45
46 int ServiceProcessMain(const MainFunctionParams& parameters) {
47 return ResultCodes::BAD_PROCESS_TYPE;
48 }
OLDNEW
« no previous file with comments | « chrome/app/chrome_dll_main.cc ('k') | chrome/chrome.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698