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

Side by Side Diff: content/public/common/main_function_params.h

Issue 196413016: Move CommandLine to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 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 | « content/public/common/content_client.h ('k') | content/public/common/sandbox_init.h » ('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) 2012 The Chromium Authors. All rights reserved. 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 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 // Wrapper to the parameter list for the "main" entry points (browser, renderer, 5 // Wrapper to the parameter list for the "main" entry points (browser, renderer,
6 // plugin) to shield the call sites from the differences between platforms 6 // plugin) to shield the call sites from the differences between platforms
7 // (e.g., POSIX doesn't need to pass any sandbox information). 7 // (e.g., POSIX doesn't need to pass any sandbox information).
8 8
9 #ifndef CONTENT_PUBLIC_COMMON_MAIN_FUNCTION_PARAMS_H_ 9 #ifndef CONTENT_PUBLIC_COMMON_MAIN_FUNCTION_PARAMS_H_
10 #define CONTENT_PUBLIC_COMMON_MAIN_FUNCTION_PARAMS_H_ 10 #define CONTENT_PUBLIC_COMMON_MAIN_FUNCTION_PARAMS_H_
11 11
12 #include "base/callback_forward.h" 12 #include "base/callback_forward.h"
13 #include "base/command_line.h" 13 #include "base/command_line.h"
14 14
15 #if defined(OS_WIN) 15 #if defined(OS_WIN)
16 namespace sandbox { 16 namespace sandbox {
17 struct SandboxInterfaceInfo; 17 struct SandboxInterfaceInfo;
18 } 18 }
19 #elif defined(OS_MACOSX) 19 #elif defined(OS_MACOSX)
20 namespace base { 20 namespace base {
21 namespace mac { 21 namespace mac {
22 class ScopedNSAutoreleasePool; 22 class ScopedNSAutoreleasePool;
23 } 23 }
24 } 24 }
25 #endif 25 #endif
26 26
27 namespace content { 27 namespace content {
28 28
29 struct MainFunctionParams { 29 struct MainFunctionParams {
30 explicit MainFunctionParams(const CommandLine& cl) 30 explicit MainFunctionParams(const base::CommandLine& cl)
31 : command_line(cl), 31 : command_line(cl),
32 #if defined(OS_WIN) 32 #if defined(OS_WIN)
33 sandbox_info(NULL), 33 sandbox_info(NULL),
34 #elif defined(OS_MACOSX) 34 #elif defined(OS_MACOSX)
35 autorelease_pool(NULL), 35 autorelease_pool(NULL),
36 #endif 36 #endif
37 ui_task(NULL) { 37 ui_task(NULL) {
38 } 38 }
39 39
40 const CommandLine& command_line; 40 const base::CommandLine& command_line;
41 41
42 #if defined(OS_WIN) 42 #if defined(OS_WIN)
43 sandbox::SandboxInterfaceInfo* sandbox_info; 43 sandbox::SandboxInterfaceInfo* sandbox_info;
44 #elif defined(OS_MACOSX) 44 #elif defined(OS_MACOSX)
45 base::mac::ScopedNSAutoreleasePool* autorelease_pool; 45 base::mac::ScopedNSAutoreleasePool* autorelease_pool;
46 #endif 46 #endif
47 47
48 // Used by InProcessBrowserTest. If non-null BrowserMain schedules this 48 // Used by InProcessBrowserTest. If non-null BrowserMain schedules this
49 // task to run on the MessageLoop and BrowserInit is not invoked. 49 // task to run on the MessageLoop and BrowserInit is not invoked.
50 base::Closure* ui_task; 50 base::Closure* ui_task;
51 }; 51 };
52 52
53 } // namespace content 53 } // namespace content
54 54
55 #endif // CONTENT_PUBLIC_COMMON_MAIN_FUNCTION_PARAMS_H_ 55 #endif // CONTENT_PUBLIC_COMMON_MAIN_FUNCTION_PARAMS_H_
OLDNEW
« no previous file with comments | « content/public/common/content_client.h ('k') | content/public/common/sandbox_init.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698