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
3 // found in the LICENSE file.
5 #ifndef CONTENT_PUBLIC_APP_CONTENT_MAIN_H_
6 #define CONTENT_PUBLIC_APP_CONTENT_MAIN_H_
10 #include "base/callback_forward.h"
11 #include "build/build_config.h"
12 #include "content/common/content_export.h"
19 struct SandboxInterfaceInfo
;
23 class ContentMainDelegate
;
25 struct ContentMainParams
{
26 explicit ContentMainParams(ContentMainDelegate
* delegate
)
31 #elif !defined(OS_ANDROID)
38 ContentMainDelegate
* delegate
;
43 // |sandbox_info| should be initialized using InitializeSandboxInfo from
45 sandbox::SandboxInterfaceInfo
* sandbox_info
;
46 #elif !defined(OS_ANDROID)
51 // Used by browser_tests. If non-null BrowserMain schedules this task to run
52 // on the MessageLoop. It's owned by the test code.
53 base::Closure
* ui_task
;
56 #if defined(OS_ANDROID)
57 // In the Android, the content main starts from ContentMain.java, This function
58 // provides a way to set the |delegate| as ContentMainDelegate for
60 // This should only be called once before ContentMainRunner actually running.
61 // The ownership of |delegate| is transferred.
62 CONTENT_EXPORT
void SetContentMainDelegate(ContentMainDelegate
* delegate
);
64 // ContentMain should be called from the embedder's main() function to do the
65 // initial setup for every process. The embedder has a chance to customize
66 // startup using the ContentMainDelegate interface. The embedder can also pass
67 // in NULL for |delegate| if they don't want to override default startup.
68 CONTENT_EXPORT
int ContentMain(const ContentMainParams
& params
);
71 } // namespace content
73 #endif // CONTENT_PUBLIC_APP_CONTENT_MAIN_H_